=5.4.0",
+ "psr\/container": "^1.0"
+ },
+ "require-dev": {
+ "phpunit\/phpunit": "*@stable"
+ },
+ "autoload": {
+ "psr-4": {
+ "Pixelgrade\\Customify\\Vendor\\Cedaro\\WP\\Plugin\\": "src\/"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Pixelgrade\\Customify\\Vendor\\Cedaro\\WP\\Plugin\\Test\\": "tests\/"
+ }
+ },
+ "scripts": {
+ "test": ".\/vendor\/bin\/phpunit --coverage-html coverage"
+ }
+}
\ No newline at end of file
diff --git a/vendor_prefixed/cedaro/wp-plugin/src/AbstractHookProvider.php b/vendor_prefixed/cedaro/wp-plugin/src/AbstractHookProvider.php
new file mode 100644
index 00000000..6a55b4ae
--- /dev/null
+++ b/vendor_prefixed/cedaro/wp-plugin/src/AbstractHookProvider.php
@@ -0,0 +1,24 @@
+basename;
+ }
+ /**
+ * Set the plugin basename.
+ *
+ * @param string $basename Relative path from the main plugin directory.
+ * @return $this
+ */
+ public function set_basename($basename)
+ {
+ $this->basename = $basename;
+ return $this;
+ }
+ /**
+ * Retrieve the plugin directory.
+ *
+ * @return string
+ */
+ public function get_directory()
+ {
+ return $this->directory;
+ }
+ /**
+ * Set the plugin's directory.
+ *
+ * @param string $directory Absolute path to the main plugin directory.
+ * @return $this
+ */
+ public function set_directory($directory)
+ {
+ $this->directory = \rtrim($directory, '/') . '/';
+ return $this;
+ }
+ /**
+ * Retrieve the path to a file in the plugin.
+ *
+ * @param string $path Optional. Path relative to the plugin root.
+ * @return string
+ */
+ public function get_path($path = '')
+ {
+ return $this->directory . \ltrim($path, '/');
+ }
+ /**
+ * Retrieve the absolute path for the main plugin file.
+ *
+ * @return string
+ */
+ public function get_file()
+ {
+ return $this->file;
+ }
+ /**
+ * Set the path to the main plugin file.
+ *
+ * @param string $file Absolute path to the main plugin file.
+ * @return $this
+ */
+ public function set_file($file)
+ {
+ $this->file = $file;
+ return $this;
+ }
+ /**
+ * Retrieve the plugin identifier.
+ *
+ * @return string
+ */
+ public function get_slug()
+ {
+ return $this->slug;
+ }
+ /**
+ * Set the plugin identifier.
+ *
+ * @param string $slug Plugin identifier.
+ * @return $this
+ */
+ public function set_slug($slug)
+ {
+ $this->slug = $slug;
+ return $this;
+ }
+ /**
+ * Retrieve the URL for a file in the plugin.
+ *
+ * @param string $path Optional. Path relative to the plugin root.
+ * @return string
+ */
+ public function get_url($path = '')
+ {
+ return $this->url . \ltrim($path, '/');
+ }
+ /**
+ * Set the URL for plugin directory root.
+ *
+ * @param string $url URL to the root of the plugin directory.
+ * @return $this
+ */
+ public function set_url($url)
+ {
+ $this->url = \rtrim($url, '/') . '/';
+ return $this;
+ }
+ /**
+ * Register a hook provider.
+ *
+ * @param HookProviderInterface $provider Hook provider.
+ * @return $this
+ */
+ public function register_hooks(\Pixelgrade\Customify\Vendor\Cedaro\WP\Plugin\HookProviderInterface $provider)
+ {
+ if ($provider instanceof \Pixelgrade\Customify\Vendor\Cedaro\WP\Plugin\PluginAwareInterface) {
+ $provider->set_plugin($this);
+ }
+ $provider->register_hooks();
+ return $this;
+ }
+}
diff --git a/vendor_prefixed/cedaro/wp-plugin/src/ContainerAwareTrait.php b/vendor_prefixed/cedaro/wp-plugin/src/ContainerAwareTrait.php
new file mode 100644
index 00000000..fc1bc180
--- /dev/null
+++ b/vendor_prefixed/cedaro/wp-plugin/src/ContainerAwareTrait.php
@@ -0,0 +1,90 @@
+container->get($name);
+ }
+ /**
+ * Whether a container service exists.
+ *
+ * @param string $name Service name.
+ * @return bool
+ */
+ public function __isset($name)
+ {
+ return $this->container->has($name);
+ }
+ /**
+ * Calling a non-existant method on the class checks to see if there's an
+ * item in the container that is callable and if so, calls it.
+ *
+ * @param string $method Method name.
+ * @param array $args Method arguments.
+ * @return mixed
+ */
+ public function __call($method, $args)
+ {
+ if ($this->container->has($method)) {
+ $object = $this->container->get($method);
+ if (\is_callable($object)) {
+ return \call_user_func_array($object, $args);
+ }
+ }
+ }
+ /**
+ * Enable access to the DI container by plugin consumers.
+ *
+ * @return ContainerInterface
+ */
+ public function get_container()
+ {
+ return $this->container;
+ }
+ /**
+ * Set the container.
+ *
+ * @param ContainerInterface $container Dependency injection container.
+ * @throws InvalidArgumentException when no container is provided that implements ContainerInterface.
+ * @return $this
+ */
+ public function set_container($container)
+ {
+ if (!$container instanceof \Pixelgrade\Customify\Vendor\Psr\Container\ContainerInterface) {
+ throw new \InvalidArgumentException('Expected a ContainerInterface.');
+ }
+ $this->container = $container;
+ return $this;
+ }
+}
diff --git a/vendor_prefixed/cedaro/wp-plugin/src/HookProviderInterface.php b/vendor_prefixed/cedaro/wp-plugin/src/HookProviderInterface.php
new file mode 100644
index 00000000..368570f2
--- /dev/null
+++ b/vendor_prefixed/cedaro/wp-plugin/src/HookProviderInterface.php
@@ -0,0 +1,23 @@
+map_filter($this->get_wp_filter_id($hook, $method, $priority), $method, $arg_count), $priority, $arg_count);
+ }
+ /**
+ * Add a WordPress action.
+ *
+ * This is an alias of add_filter().
+ *
+ * @param string $hook
+ * @param callable $method
+ * @param int $priority
+ * @param int $arg_count
+ * @return bool true
+ */
+ protected function add_action($hook, $method, $priority = 10, $arg_count = 1)
+ {
+ return $this->add_filter($hook, $method, $priority, $arg_count);
+ }
+ /**
+ * Remove a WordPress filter.
+ *
+ * @param string $hook
+ * @param callable $method
+ * @param int $priority
+ * @param int $arg_count
+ * @return bool Whether the function existed before it was removed.
+ */
+ protected function remove_filter($hook, $method, $priority = 10, $arg_count = 1)
+ {
+ return remove_filter($hook, $this->map_filter($this->get_wp_filter_id($hook, $method, $priority), $method, $arg_count), $priority, $arg_count);
+ }
+ /**
+ * Remove a WordPress action.
+ *
+ * This is an alias of remove_filter().
+ *
+ * @param string $hook
+ * @param callable $method
+ * @param int $priority
+ * @param int $arg_count
+ * @return bool Whether the function is removed.
+ */
+ protected function remove_action($hook, $method, $priority = 10, $arg_count = 1)
+ {
+ return $this->remove_filter($hook, $method, $priority, $arg_count);
+ }
+ /**
+ * Get a unique ID for a hook based on the internal method, hook, and priority.
+ *
+ * @param string $hook
+ * @param string $method
+ * @param int $priority
+ * @return bool|string
+ */
+ protected function get_wp_filter_id($hook, $method, $priority)
+ {
+ return _wp_filter_build_unique_id($hook, [$this, $method], $priority);
+ }
+ /**
+ * Map a filter to a closure that inherits the class' internal scope.
+ *
+ * This allows hooks to use protected and private methods.
+ *
+ * @param $id
+ * @param $method
+ * @param $arg_count
+ * @return \Closure The callable actually attached to a WP hook
+ */
+ protected function map_filter($id, $method, $arg_count)
+ {
+ if (empty($this->filter_map[$id])) {
+ $this->filter_map[$id] = function () use($method, $arg_count) {
+ return \call_user_func_array([$this, $method], \array_slice(\func_get_args(), 0, $arg_count));
+ };
+ }
+ return $this->filter_map[$id];
+ }
+}
diff --git a/vendor_prefixed/cedaro/wp-plugin/src/Plugin.php b/vendor_prefixed/cedaro/wp-plugin/src/Plugin.php
new file mode 100644
index 00000000..75decb76
--- /dev/null
+++ b/vendor_prefixed/cedaro/wp-plugin/src/Plugin.php
@@ -0,0 +1,20 @@
+plugin = $plugin;
+ return $this;
+ }
+}
diff --git a/vendor_prefixed/cedaro/wp-plugin/src/PluginFactory.php b/vendor_prefixed/cedaro/wp-plugin/src/PluginFactory.php
new file mode 100644
index 00000000..05839feb
--- /dev/null
+++ b/vendor_prefixed/cedaro/wp-plugin/src/PluginFactory.php
@@ -0,0 +1,37 @@
+set_basename(plugin_basename($filename))->set_directory(plugin_dir_path($filename))->set_file($filename)->set_slug($slug)->set_url(plugin_dir_url($filename));
+ }
+}
diff --git a/vendor_prefixed/cedaro/wp-plugin/src/PluginInterface.php b/vendor_prefixed/cedaro/wp-plugin/src/PluginInterface.php
new file mode 100644
index 00000000..ac33e012
--- /dev/null
+++ b/vendor_prefixed/cedaro/wp-plugin/src/PluginInterface.php
@@ -0,0 +1,102 @@
+load_textdomain();
+ } else {
+ $this->add_action('plugins_loaded', 'load_textdomain');
+ }
+ }
+ /**
+ * Load the text domain to localize the plugin.
+ */
+ protected function load_textdomain()
+ {
+ $plugin_rel_path = \dirname($this->plugin->get_basename()) . '/languages';
+ load_plugin_textdomain($this->plugin->get_slug(), \false, $plugin_rel_path);
+ }
+}
diff --git a/vendor_prefixed/pimple/pimple/LICENSE b/vendor_prefixed/pimple/pimple/LICENSE
new file mode 100644
index 00000000..3e2a9e1e
--- /dev/null
+++ b/vendor_prefixed/pimple/pimple/LICENSE
@@ -0,0 +1,19 @@
+Copyright (c) 2009-2020 Fabien Potencier
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is furnished
+to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/vendor_prefixed/pimple/pimple/composer.json b/vendor_prefixed/pimple/pimple/composer.json
new file mode 100644
index 00000000..e6521b81
--- /dev/null
+++ b/vendor_prefixed/pimple/pimple/composer.json
@@ -0,0 +1,34 @@
+{
+ "name": "pimple\/pimple",
+ "type": "library",
+ "description": "Pimple, a simple Dependency Injection Container",
+ "keywords": [
+ "dependency injection",
+ "container"
+ ],
+ "homepage": "https:\/\/pimple.symfony.com",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ }
+ ],
+ "require": {
+ "php": ">=7.2.5",
+ "psr\/container": "^1.1"
+ },
+ "require-dev": {
+ "symfony\/phpunit-bridge": "^5.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "Pixelgrade\\Customify\\Vendor\\Pimple\\": "src\/Pimple\/"
+ }
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.4.x-dev"
+ }
+ }
+}
\ No newline at end of file
diff --git a/vendor_prefixed/pimple/pimple/src/Pimple/Container.php b/vendor_prefixed/pimple/pimple/src/Pimple/Container.php
new file mode 100644
index 00000000..92297560
--- /dev/null
+++ b/vendor_prefixed/pimple/pimple/src/Pimple/Container.php
@@ -0,0 +1,256 @@
+factories = new \SplObjectStorage();
+ $this->protected = new \SplObjectStorage();
+ foreach ($values as $key => $value) {
+ $this->offsetSet($key, $value);
+ }
+ }
+ /**
+ * Sets a parameter or an object.
+ *
+ * Objects must be defined as Closures.
+ *
+ * Allowing any PHP callable leads to difficult to debug problems
+ * as function names (strings) are callable (creating a function with
+ * the same name as an existing parameter would break your container).
+ *
+ * @param string $id The unique identifier for the parameter or object
+ * @param mixed $value The value of the parameter or a closure to define an object
+ *
+ * @throws FrozenServiceException Prevent override of a frozen service
+ */
+ public function offsetSet($id, $value)
+ {
+ if (isset($this->frozen[$id])) {
+ throw new \Pixelgrade\Customify\Vendor\Pimple\Exception\FrozenServiceException($id);
+ }
+ $this->values[$id] = $value;
+ $this->keys[$id] = \true;
+ }
+ /**
+ * Gets a parameter or an object.
+ *
+ * @param string $id The unique identifier for the parameter or object
+ *
+ * @return mixed The value of the parameter or an object
+ *
+ * @throws UnknownIdentifierException If the identifier is not defined
+ */
+ public function offsetGet($id)
+ {
+ if (!isset($this->keys[$id])) {
+ throw new \Pixelgrade\Customify\Vendor\Pimple\Exception\UnknownIdentifierException($id);
+ }
+ if (isset($this->raw[$id]) || !\is_object($this->values[$id]) || isset($this->protected[$this->values[$id]]) || !\method_exists($this->values[$id], '__invoke')) {
+ return $this->values[$id];
+ }
+ if (isset($this->factories[$this->values[$id]])) {
+ return $this->values[$id]($this);
+ }
+ $raw = $this->values[$id];
+ $val = $this->values[$id] = $raw($this);
+ $this->raw[$id] = $raw;
+ $this->frozen[$id] = \true;
+ return $val;
+ }
+ /**
+ * Checks if a parameter or an object is set.
+ *
+ * @param string $id The unique identifier for the parameter or object
+ *
+ * @return bool
+ */
+ public function offsetExists($id)
+ {
+ return isset($this->keys[$id]);
+ }
+ /**
+ * Unsets a parameter or an object.
+ *
+ * @param string $id The unique identifier for the parameter or object
+ */
+ public function offsetUnset($id)
+ {
+ if (isset($this->keys[$id])) {
+ if (\is_object($this->values[$id])) {
+ unset($this->factories[$this->values[$id]], $this->protected[$this->values[$id]]);
+ }
+ unset($this->values[$id], $this->frozen[$id], $this->raw[$id], $this->keys[$id]);
+ }
+ }
+ /**
+ * Marks a callable as being a factory service.
+ *
+ * @param callable $callable A service definition to be used as a factory
+ *
+ * @return callable The passed callable
+ *
+ * @throws ExpectedInvokableException Service definition has to be a closure or an invokable object
+ */
+ public function factory($callable)
+ {
+ if (!\is_object($callable) || !\method_exists($callable, '__invoke')) {
+ throw new \Pixelgrade\Customify\Vendor\Pimple\Exception\ExpectedInvokableException('Service definition is not a Closure or invokable object.');
+ }
+ $this->factories->attach($callable);
+ return $callable;
+ }
+ /**
+ * Protects a callable from being interpreted as a service.
+ *
+ * This is useful when you want to store a callable as a parameter.
+ *
+ * @param callable $callable A callable to protect from being evaluated
+ *
+ * @return callable The passed callable
+ *
+ * @throws ExpectedInvokableException Service definition has to be a closure or an invokable object
+ */
+ public function protect($callable)
+ {
+ if (!\is_object($callable) || !\method_exists($callable, '__invoke')) {
+ throw new \Pixelgrade\Customify\Vendor\Pimple\Exception\ExpectedInvokableException('Callable is not a Closure or invokable object.');
+ }
+ $this->protected->attach($callable);
+ return $callable;
+ }
+ /**
+ * Gets a parameter or the closure defining an object.
+ *
+ * @param string $id The unique identifier for the parameter or object
+ *
+ * @return mixed The value of the parameter or the closure defining an object
+ *
+ * @throws UnknownIdentifierException If the identifier is not defined
+ */
+ public function raw($id)
+ {
+ if (!isset($this->keys[$id])) {
+ throw new \Pixelgrade\Customify\Vendor\Pimple\Exception\UnknownIdentifierException($id);
+ }
+ if (isset($this->raw[$id])) {
+ return $this->raw[$id];
+ }
+ return $this->values[$id];
+ }
+ /**
+ * Extends an object definition.
+ *
+ * Useful when you want to extend an existing object definition,
+ * without necessarily loading that object.
+ *
+ * @param string $id The unique identifier for the object
+ * @param callable $callable A service definition to extend the original
+ *
+ * @return callable The wrapped callable
+ *
+ * @throws UnknownIdentifierException If the identifier is not defined
+ * @throws FrozenServiceException If the service is frozen
+ * @throws InvalidServiceIdentifierException If the identifier belongs to a parameter
+ * @throws ExpectedInvokableException If the extension callable is not a closure or an invokable object
+ */
+ public function extend($id, $callable)
+ {
+ if (!isset($this->keys[$id])) {
+ throw new \Pixelgrade\Customify\Vendor\Pimple\Exception\UnknownIdentifierException($id);
+ }
+ if (isset($this->frozen[$id])) {
+ throw new \Pixelgrade\Customify\Vendor\Pimple\Exception\FrozenServiceException($id);
+ }
+ if (!\is_object($this->values[$id]) || !\method_exists($this->values[$id], '__invoke')) {
+ throw new \Pixelgrade\Customify\Vendor\Pimple\Exception\InvalidServiceIdentifierException($id);
+ }
+ if (isset($this->protected[$this->values[$id]])) {
+ @\trigger_error(\sprintf('How Pimple behaves when extending protected closures will be fixed in Pimple 4. Are you sure "%s" should be protected?', $id), \E_USER_DEPRECATED);
+ }
+ if (!\is_object($callable) || !\method_exists($callable, '__invoke')) {
+ throw new \Pixelgrade\Customify\Vendor\Pimple\Exception\ExpectedInvokableException('Extension service definition is not a Closure or invokable object.');
+ }
+ $factory = $this->values[$id];
+ $extended = function ($c) use($callable, $factory) {
+ return $callable($factory($c), $c);
+ };
+ if (isset($this->factories[$factory])) {
+ $this->factories->detach($factory);
+ $this->factories->attach($extended);
+ }
+ return $this[$id] = $extended;
+ }
+ /**
+ * Returns all defined value names.
+ *
+ * @return array An array of value names
+ */
+ public function keys()
+ {
+ return \array_keys($this->values);
+ }
+ /**
+ * Registers a service provider.
+ *
+ * @param ServiceProviderInterface $provider A ServiceProviderInterface instance
+ * @param array $values An array of values that customizes the provider
+ *
+ * @return static
+ */
+ public function register(\Pixelgrade\Customify\Vendor\Pimple\ServiceProviderInterface $provider, array $values = [])
+ {
+ $provider->register($this);
+ foreach ($values as $key => $value) {
+ $this[$key] = $value;
+ }
+ return $this;
+ }
+}
diff --git a/vendor_prefixed/pimple/pimple/src/Pimple/Exception/ExpectedInvokableException.php b/vendor_prefixed/pimple/pimple/src/Pimple/Exception/ExpectedInvokableException.php
new file mode 100644
index 00000000..a1b44155
--- /dev/null
+++ b/vendor_prefixed/pimple/pimple/src/Pimple/Exception/ExpectedInvokableException.php
@@ -0,0 +1,36 @@
+
+ */
+class ExpectedInvokableException extends \InvalidArgumentException implements \Pixelgrade\Customify\Vendor\Psr\Container\ContainerExceptionInterface
+{
+}
diff --git a/vendor_prefixed/pimple/pimple/src/Pimple/Exception/FrozenServiceException.php b/vendor_prefixed/pimple/pimple/src/Pimple/Exception/FrozenServiceException.php
new file mode 100644
index 00000000..131a588c
--- /dev/null
+++ b/vendor_prefixed/pimple/pimple/src/Pimple/Exception/FrozenServiceException.php
@@ -0,0 +1,43 @@
+
+ */
+class FrozenServiceException extends \RuntimeException implements \Pixelgrade\Customify\Vendor\Psr\Container\ContainerExceptionInterface
+{
+ /**
+ * @param string $id Identifier of the frozen service
+ */
+ public function __construct($id)
+ {
+ parent::__construct(\sprintf('Cannot override frozen service "%s".', $id));
+ }
+}
diff --git a/vendor_prefixed/pimple/pimple/src/Pimple/Exception/InvalidServiceIdentifierException.php b/vendor_prefixed/pimple/pimple/src/Pimple/Exception/InvalidServiceIdentifierException.php
new file mode 100644
index 00000000..57e62c56
--- /dev/null
+++ b/vendor_prefixed/pimple/pimple/src/Pimple/Exception/InvalidServiceIdentifierException.php
@@ -0,0 +1,43 @@
+
+ */
+class InvalidServiceIdentifierException extends \InvalidArgumentException implements \Pixelgrade\Customify\Vendor\Psr\Container\NotFoundExceptionInterface
+{
+ /**
+ * @param string $id The invalid identifier
+ */
+ public function __construct($id)
+ {
+ parent::__construct(\sprintf('Identifier "%s" does not contain an object definition.', $id));
+ }
+}
diff --git a/vendor_prefixed/pimple/pimple/src/Pimple/Exception/UnknownIdentifierException.php b/vendor_prefixed/pimple/pimple/src/Pimple/Exception/UnknownIdentifierException.php
new file mode 100644
index 00000000..1fc0a4ea
--- /dev/null
+++ b/vendor_prefixed/pimple/pimple/src/Pimple/Exception/UnknownIdentifierException.php
@@ -0,0 +1,43 @@
+
+ */
+class UnknownIdentifierException extends \InvalidArgumentException implements \Pixelgrade\Customify\Vendor\Psr\Container\NotFoundExceptionInterface
+{
+ /**
+ * @param string $id The unknown identifier
+ */
+ public function __construct($id)
+ {
+ parent::__construct(\sprintf('Identifier "%s" is not defined.', $id));
+ }
+}
diff --git a/vendor_prefixed/pimple/pimple/src/Pimple/Psr11/Container.php b/vendor_prefixed/pimple/pimple/src/Pimple/Psr11/Container.php
new file mode 100644
index 00000000..3c25d60e
--- /dev/null
+++ b/vendor_prefixed/pimple/pimple/src/Pimple/Psr11/Container.php
@@ -0,0 +1,50 @@
+
+ */
+final class Container implements \Pixelgrade\Customify\Vendor\Psr\Container\ContainerInterface
+{
+ private $pimple;
+ public function __construct(\Pixelgrade\Customify\Vendor\Pimple\Container $pimple)
+ {
+ $this->pimple = $pimple;
+ }
+ public function get(string $id)
+ {
+ return $this->pimple[$id];
+ }
+ public function has(string $id) : bool
+ {
+ return isset($this->pimple[$id]);
+ }
+}
diff --git a/vendor_prefixed/pimple/pimple/src/Pimple/Psr11/ServiceLocator.php b/vendor_prefixed/pimple/pimple/src/Pimple/Psr11/ServiceLocator.php
new file mode 100644
index 00000000..a8107f3c
--- /dev/null
+++ b/vendor_prefixed/pimple/pimple/src/Pimple/Psr11/ServiceLocator.php
@@ -0,0 +1,68 @@
+
+ */
+class ServiceLocator implements \Pixelgrade\Customify\Vendor\Psr\Container\ContainerInterface
+{
+ private $container;
+ private $aliases = [];
+ /**
+ * @param PimpleContainer $container The Container instance used to locate services
+ * @param array $ids Array of service ids that can be located. String keys can be used to define aliases
+ */
+ public function __construct(\Pixelgrade\Customify\Vendor\Pimple\Container $container, array $ids)
+ {
+ $this->container = $container;
+ foreach ($ids as $key => $id) {
+ $this->aliases[\is_int($key) ? $id : $key] = $id;
+ }
+ }
+ /**
+ * {@inheritdoc}
+ */
+ public function get(string $id)
+ {
+ if (!isset($this->aliases[$id])) {
+ throw new \Pixelgrade\Customify\Vendor\Pimple\Exception\UnknownIdentifierException($id);
+ }
+ return $this->container[$this->aliases[$id]];
+ }
+ /**
+ * {@inheritdoc}
+ */
+ public function has(string $id)
+ {
+ return isset($this->aliases[$id]) && isset($this->container[$this->aliases[$id]]);
+ }
+}
diff --git a/vendor_prefixed/pimple/pimple/src/Pimple/ServiceIterator.php b/vendor_prefixed/pimple/pimple/src/Pimple/ServiceIterator.php
new file mode 100644
index 00000000..a679de1d
--- /dev/null
+++ b/vendor_prefixed/pimple/pimple/src/Pimple/ServiceIterator.php
@@ -0,0 +1,62 @@
+
+ */
+final class ServiceIterator implements \Iterator
+{
+ private $container;
+ private $ids;
+ public function __construct(\Pixelgrade\Customify\Vendor\Pimple\Container $container, array $ids)
+ {
+ $this->container = $container;
+ $this->ids = $ids;
+ }
+ public function rewind()
+ {
+ \reset($this->ids);
+ }
+ public function current()
+ {
+ return $this->container[\current($this->ids)];
+ }
+ public function key()
+ {
+ return \current($this->ids);
+ }
+ public function next()
+ {
+ \next($this->ids);
+ }
+ public function valid()
+ {
+ return null !== \key($this->ids);
+ }
+}
diff --git a/vendor_prefixed/pimple/pimple/src/Pimple/ServiceProviderInterface.php b/vendor_prefixed/pimple/pimple/src/Pimple/ServiceProviderInterface.php
new file mode 100644
index 00000000..b9012484
--- /dev/null
+++ b/vendor_prefixed/pimple/pimple/src/Pimple/ServiceProviderInterface.php
@@ -0,0 +1,45 @@
+=7.2.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "Pixelgrade\\Customify\\Vendor\\Psr\\Container\\": "src\/"
+ }
+ }
+}
\ No newline at end of file
diff --git a/vendor_prefixed/psr/container/src/ContainerExceptionInterface.php b/vendor_prefixed/psr/container/src/ContainerExceptionInterface.php
new file mode 100644
index 00000000..24e081a2
--- /dev/null
+++ b/vendor_prefixed/psr/container/src/ContainerExceptionInterface.php
@@ -0,0 +1,10 @@
+log(\Pixelgrade\Customify\Vendor\Psr\Log\LogLevel::EMERGENCY, $message, $context);
+ }
+ /**
+ * Action must be taken immediately.
+ *
+ * Example: Entire website down, database unavailable, etc. This should
+ * trigger the SMS alerts and wake you up.
+ *
+ * @param string $message
+ * @param array $context
+ *
+ * @return void
+ */
+ public function alert($message, array $context = array())
+ {
+ $this->log(\Pixelgrade\Customify\Vendor\Psr\Log\LogLevel::ALERT, $message, $context);
+ }
+ /**
+ * Critical conditions.
+ *
+ * Example: Application component unavailable, unexpected exception.
+ *
+ * @param string $message
+ * @param array $context
+ *
+ * @return void
+ */
+ public function critical($message, array $context = array())
+ {
+ $this->log(\Pixelgrade\Customify\Vendor\Psr\Log\LogLevel::CRITICAL, $message, $context);
+ }
+ /**
+ * Runtime errors that do not require immediate action but should typically
+ * be logged and monitored.
+ *
+ * @param string $message
+ * @param array $context
+ *
+ * @return void
+ */
+ public function error($message, array $context = array())
+ {
+ $this->log(\Pixelgrade\Customify\Vendor\Psr\Log\LogLevel::ERROR, $message, $context);
+ }
+ /**
+ * Exceptional occurrences that are not errors.
+ *
+ * Example: Use of deprecated APIs, poor use of an API, undesirable things
+ * that are not necessarily wrong.
+ *
+ * @param string $message
+ * @param array $context
+ *
+ * @return void
+ */
+ public function warning($message, array $context = array())
+ {
+ $this->log(\Pixelgrade\Customify\Vendor\Psr\Log\LogLevel::WARNING, $message, $context);
+ }
+ /**
+ * Normal but significant events.
+ *
+ * @param string $message
+ * @param array $context
+ *
+ * @return void
+ */
+ public function notice($message, array $context = array())
+ {
+ $this->log(\Pixelgrade\Customify\Vendor\Psr\Log\LogLevel::NOTICE, $message, $context);
+ }
+ /**
+ * Interesting events.
+ *
+ * Example: User logs in, SQL logs.
+ *
+ * @param string $message
+ * @param array $context
+ *
+ * @return void
+ */
+ public function info($message, array $context = array())
+ {
+ $this->log(\Pixelgrade\Customify\Vendor\Psr\Log\LogLevel::INFO, $message, $context);
+ }
+ /**
+ * Detailed debug information.
+ *
+ * @param string $message
+ * @param array $context
+ *
+ * @return void
+ */
+ public function debug($message, array $context = array())
+ {
+ $this->log(\Pixelgrade\Customify\Vendor\Psr\Log\LogLevel::DEBUG, $message, $context);
+ }
+}
diff --git a/vendor_prefixed/psr/log/Psr/Log/InvalidArgumentException.php b/vendor_prefixed/psr/log/Psr/Log/InvalidArgumentException.php
new file mode 100644
index 00000000..38cc91bb
--- /dev/null
+++ b/vendor_prefixed/psr/log/Psr/Log/InvalidArgumentException.php
@@ -0,0 +1,7 @@
+logger = $logger;
+ }
+}
diff --git a/vendor_prefixed/psr/log/Psr/Log/LoggerInterface.php b/vendor_prefixed/psr/log/Psr/Log/LoggerInterface.php
new file mode 100644
index 00000000..57682509
--- /dev/null
+++ b/vendor_prefixed/psr/log/Psr/Log/LoggerInterface.php
@@ -0,0 +1,117 @@
+log(\Pixelgrade\Customify\Vendor\Psr\Log\LogLevel::EMERGENCY, $message, $context);
+ }
+ /**
+ * Action must be taken immediately.
+ *
+ * Example: Entire website down, database unavailable, etc. This should
+ * trigger the SMS alerts and wake you up.
+ *
+ * @param string $message
+ * @param array $context
+ *
+ * @return void
+ */
+ public function alert($message, array $context = array())
+ {
+ $this->log(\Pixelgrade\Customify\Vendor\Psr\Log\LogLevel::ALERT, $message, $context);
+ }
+ /**
+ * Critical conditions.
+ *
+ * Example: Application component unavailable, unexpected exception.
+ *
+ * @param string $message
+ * @param array $context
+ *
+ * @return void
+ */
+ public function critical($message, array $context = array())
+ {
+ $this->log(\Pixelgrade\Customify\Vendor\Psr\Log\LogLevel::CRITICAL, $message, $context);
+ }
+ /**
+ * Runtime errors that do not require immediate action but should typically
+ * be logged and monitored.
+ *
+ * @param string $message
+ * @param array $context
+ *
+ * @return void
+ */
+ public function error($message, array $context = array())
+ {
+ $this->log(\Pixelgrade\Customify\Vendor\Psr\Log\LogLevel::ERROR, $message, $context);
+ }
+ /**
+ * Exceptional occurrences that are not errors.
+ *
+ * Example: Use of deprecated APIs, poor use of an API, undesirable things
+ * that are not necessarily wrong.
+ *
+ * @param string $message
+ * @param array $context
+ *
+ * @return void
+ */
+ public function warning($message, array $context = array())
+ {
+ $this->log(\Pixelgrade\Customify\Vendor\Psr\Log\LogLevel::WARNING, $message, $context);
+ }
+ /**
+ * Normal but significant events.
+ *
+ * @param string $message
+ * @param array $context
+ *
+ * @return void
+ */
+ public function notice($message, array $context = array())
+ {
+ $this->log(\Pixelgrade\Customify\Vendor\Psr\Log\LogLevel::NOTICE, $message, $context);
+ }
+ /**
+ * Interesting events.
+ *
+ * Example: User logs in, SQL logs.
+ *
+ * @param string $message
+ * @param array $context
+ *
+ * @return void
+ */
+ public function info($message, array $context = array())
+ {
+ $this->log(\Pixelgrade\Customify\Vendor\Psr\Log\LogLevel::INFO, $message, $context);
+ }
+ /**
+ * Detailed debug information.
+ *
+ * @param string $message
+ * @param array $context
+ *
+ * @return void
+ */
+ public function debug($message, array $context = array())
+ {
+ $this->log(\Pixelgrade\Customify\Vendor\Psr\Log\LogLevel::DEBUG, $message, $context);
+ }
+ /**
+ * Logs with an arbitrary level.
+ *
+ * @param mixed $level
+ * @param string $message
+ * @param array $context
+ *
+ * @return void
+ *
+ * @throws \Psr\Log\InvalidArgumentException
+ */
+ public abstract function log($level, $message, array $context = array());
+}
diff --git a/vendor_prefixed/psr/log/Psr/Log/NullLogger.php b/vendor_prefixed/psr/log/Psr/Log/NullLogger.php
new file mode 100644
index 00000000..933308e7
--- /dev/null
+++ b/vendor_prefixed/psr/log/Psr/Log/NullLogger.php
@@ -0,0 +1,30 @@
+logger) { }`
+ * blocks.
+ */
+class NullLogger extends \Pixelgrade\Customify\Vendor\Psr\Log\AbstractLogger
+{
+ /**
+ * Logs with an arbitrary level.
+ *
+ * @param mixed $level
+ * @param string $message
+ * @param array $context
+ *
+ * @return void
+ *
+ * @throws \Psr\Log\InvalidArgumentException
+ */
+ public function log($level, $message, array $context = array())
+ {
+ // noop
+ }
+}
diff --git a/vendor_prefixed/psr/log/composer.json b/vendor_prefixed/psr/log/composer.json
new file mode 100644
index 00000000..d29c8be7
--- /dev/null
+++ b/vendor_prefixed/psr/log/composer.json
@@ -0,0 +1,30 @@
+{
+ "name": "psr\/log",
+ "description": "Common interface for logging libraries",
+ "keywords": [
+ "psr",
+ "psr-3",
+ "log"
+ ],
+ "homepage": "https:\/\/github.com\/php-fig\/log",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http:\/\/www.php-fig.org\/"
+ }
+ ],
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "Pixelgrade\\Customify\\Vendor\\Psr\\Log\\": "Psr\/Log\/"
+ }
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.1.x-dev"
+ }
+ }
+}
\ No newline at end of file
diff --git a/vendor_prefixed/symfony/polyfill-mbstring/LICENSE b/vendor_prefixed/symfony/polyfill-mbstring/LICENSE
new file mode 100644
index 00000000..4cd8bdd3
--- /dev/null
+++ b/vendor_prefixed/symfony/polyfill-mbstring/LICENSE
@@ -0,0 +1,19 @@
+Copyright (c) 2015-2019 Fabien Potencier
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is furnished
+to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/vendor_prefixed/symfony/polyfill-mbstring/Mbstring.php b/vendor_prefixed/symfony/polyfill-mbstring/Mbstring.php
new file mode 100644
index 00000000..fe705a6a
--- /dev/null
+++ b/vendor_prefixed/symfony/polyfill-mbstring/Mbstring.php
@@ -0,0 +1,695 @@
+
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+namespace Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring;
+
+/**
+ * Partial mbstring implementation in PHP, iconv based, UTF-8 centric.
+ *
+ * Implemented:
+ * - mb_chr - Returns a specific character from its Unicode code point
+ * - mb_convert_encoding - Convert character encoding
+ * - mb_convert_variables - Convert character code in variable(s)
+ * - mb_decode_mimeheader - Decode string in MIME header field
+ * - mb_encode_mimeheader - Encode string for MIME header XXX NATIVE IMPLEMENTATION IS REALLY BUGGED
+ * - mb_decode_numericentity - Decode HTML numeric string reference to character
+ * - mb_encode_numericentity - Encode character to HTML numeric string reference
+ * - mb_convert_case - Perform case folding on a string
+ * - mb_detect_encoding - Detect character encoding
+ * - mb_get_info - Get internal settings of mbstring
+ * - mb_http_input - Detect HTTP input character encoding
+ * - mb_http_output - Set/Get HTTP output character encoding
+ * - mb_internal_encoding - Set/Get internal character encoding
+ * - mb_list_encodings - Returns an array of all supported encodings
+ * - mb_ord - Returns the Unicode code point of a character
+ * - mb_output_handler - Callback function converts character encoding in output buffer
+ * - mb_scrub - Replaces ill-formed byte sequences with substitute characters
+ * - mb_strlen - Get string length
+ * - mb_strpos - Find position of first occurrence of string in a string
+ * - mb_strrpos - Find position of last occurrence of a string in a string
+ * - mb_str_split - Convert a string to an array
+ * - mb_strtolower - Make a string lowercase
+ * - mb_strtoupper - Make a string uppercase
+ * - mb_substitute_character - Set/Get substitution character
+ * - mb_substr - Get part of string
+ * - mb_stripos - Finds position of first occurrence of a string within another, case insensitive
+ * - mb_stristr - Finds first occurrence of a string within another, case insensitive
+ * - mb_strrchr - Finds the last occurrence of a character in a string within another
+ * - mb_strrichr - Finds the last occurrence of a character in a string within another, case insensitive
+ * - mb_strripos - Finds position of last occurrence of a string within another, case insensitive
+ * - mb_strstr - Finds first occurrence of a string within another
+ * - mb_strwidth - Return width of string
+ * - mb_substr_count - Count the number of substring occurrences
+ *
+ * Not implemented:
+ * - mb_convert_kana - Convert "kana" one from another ("zen-kaku", "han-kaku" and more)
+ * - mb_ereg_* - Regular expression with multibyte support
+ * - mb_parse_str - Parse GET/POST/COOKIE data and set global variable
+ * - mb_preferred_mime_name - Get MIME charset string
+ * - mb_regex_encoding - Returns current encoding for multibyte regex as string
+ * - mb_regex_set_options - Set/Get the default options for mbregex functions
+ * - mb_send_mail - Send encoded mail
+ * - mb_split - Split multibyte string using regular expression
+ * - mb_strcut - Get part of string
+ * - mb_strimwidth - Get truncated string with specified width
+ *
+ * @author Nicolas Grekas
+ *
+ * @internal
+ */
+final class Mbstring
+{
+ public const MB_CASE_FOLD = \PHP_INT_MAX;
+ private static $encodingList = ['ASCII', 'UTF-8'];
+ private static $language = 'neutral';
+ private static $internalEncoding = 'UTF-8';
+ private static $caseFold = [['µ', 'Å¿', "Í…", 'Ï‚', "Ï", "Ï‘", "Ï•", "Ï–", "ϰ", "ϱ", "ϵ", "ẛ", "á¾¾"], ['μ', 's', 'ι', 'σ', 'β', 'θ', 'φ', 'Ï€', 'κ', 'Ï', 'ε', "ṡ", 'ι']];
+ public static function mb_convert_encoding($s, $toEncoding, $fromEncoding = null)
+ {
+ if (\is_array($fromEncoding) || \false !== \strpos($fromEncoding, ',')) {
+ $fromEncoding = self::mb_detect_encoding($s, $fromEncoding);
+ } else {
+ $fromEncoding = self::getEncoding($fromEncoding);
+ }
+ $toEncoding = self::getEncoding($toEncoding);
+ if ('BASE64' === $fromEncoding) {
+ $s = \base64_decode($s);
+ $fromEncoding = $toEncoding;
+ }
+ if ('BASE64' === $toEncoding) {
+ return \base64_encode($s);
+ }
+ if ('HTML-ENTITIES' === $toEncoding || 'HTML' === $toEncoding) {
+ if ('HTML-ENTITIES' === $fromEncoding || 'HTML' === $fromEncoding) {
+ $fromEncoding = 'Windows-1252';
+ }
+ if ('UTF-8' !== $fromEncoding) {
+ $s = \iconv($fromEncoding, 'UTF-8//IGNORE', $s);
+ }
+ return \preg_replace_callback('/[\\x80-\\xFF]+/', [__CLASS__, 'html_encoding_callback'], $s);
+ }
+ if ('HTML-ENTITIES' === $fromEncoding) {
+ $s = \html_entity_decode($s, \ENT_COMPAT, 'UTF-8');
+ $fromEncoding = 'UTF-8';
+ }
+ return \iconv($fromEncoding, $toEncoding . '//IGNORE', $s);
+ }
+ public static function mb_convert_variables($toEncoding, $fromEncoding, &...$vars)
+ {
+ $ok = \true;
+ \array_walk_recursive($vars, function (&$v) use(&$ok, $toEncoding, $fromEncoding) {
+ if (\false === ($v = self::mb_convert_encoding($v, $toEncoding, $fromEncoding))) {
+ $ok = \false;
+ }
+ });
+ return $ok ? $fromEncoding : \false;
+ }
+ public static function mb_decode_mimeheader($s)
+ {
+ return \iconv_mime_decode($s, 2, self::$internalEncoding);
+ }
+ public static function mb_encode_mimeheader($s, $charset = null, $transferEncoding = null, $linefeed = null, $indent = null)
+ {
+ \trigger_error('mb_encode_mimeheader() is bugged. Please use iconv_mime_encode() instead', \E_USER_WARNING);
+ }
+ public static function mb_decode_numericentity($s, $convmap, $encoding = null)
+ {
+ if (null !== $s && !\is_scalar($s) && !(\is_object($s) && \method_exists($s, '__toString'))) {
+ \trigger_error('mb_decode_numericentity() expects parameter 1 to be string, ' . \gettype($s) . ' given', \E_USER_WARNING);
+ return null;
+ }
+ if (!\is_array($convmap) || 80000 > \PHP_VERSION_ID && !$convmap) {
+ return \false;
+ }
+ if (null !== $encoding && !\is_scalar($encoding)) {
+ \trigger_error('mb_decode_numericentity() expects parameter 3 to be string, ' . \gettype($s) . ' given', \E_USER_WARNING);
+ return '';
+ // Instead of null (cf. mb_encode_numericentity).
+ }
+ $s = (string) $s;
+ if ('' === $s) {
+ return '';
+ }
+ $encoding = self::getEncoding($encoding);
+ if ('UTF-8' === $encoding) {
+ $encoding = null;
+ if (!\preg_match('//u', $s)) {
+ $s = @\iconv('UTF-8', 'UTF-8//IGNORE', $s);
+ }
+ } else {
+ $s = \iconv($encoding, 'UTF-8//IGNORE', $s);
+ }
+ $cnt = \floor(\count($convmap) / 4) * 4;
+ for ($i = 0; $i < $cnt; $i += 4) {
+ // collector_decode_htmlnumericentity ignores $convmap[$i + 3]
+ $convmap[$i] += $convmap[$i + 2];
+ $convmap[$i + 1] += $convmap[$i + 2];
+ }
+ $s = \preg_replace_callback('/(?:0*([0-9]+)|x0*([0-9a-fA-F]+))(?!&);?/', function (array $m) use($cnt, $convmap) {
+ $c = isset($m[2]) ? (int) \hexdec($m[2]) : $m[1];
+ for ($i = 0; $i < $cnt; $i += 4) {
+ if ($c >= $convmap[$i] && $c <= $convmap[$i + 1]) {
+ return self::mb_chr($c - $convmap[$i + 2]);
+ }
+ }
+ return $m[0];
+ }, $s);
+ if (null === $encoding) {
+ return $s;
+ }
+ return \iconv('UTF-8', $encoding . '//IGNORE', $s);
+ }
+ public static function mb_encode_numericentity($s, $convmap, $encoding = null, $is_hex = \false)
+ {
+ if (null !== $s && !\is_scalar($s) && !(\is_object($s) && \method_exists($s, '__toString'))) {
+ \trigger_error('mb_encode_numericentity() expects parameter 1 to be string, ' . \gettype($s) . ' given', \E_USER_WARNING);
+ return null;
+ }
+ if (!\is_array($convmap) || 80000 > \PHP_VERSION_ID && !$convmap) {
+ return \false;
+ }
+ if (null !== $encoding && !\is_scalar($encoding)) {
+ \trigger_error('mb_encode_numericentity() expects parameter 3 to be string, ' . \gettype($s) . ' given', \E_USER_WARNING);
+ return null;
+ // Instead of '' (cf. mb_decode_numericentity).
+ }
+ if (null !== $is_hex && !\is_scalar($is_hex)) {
+ \trigger_error('mb_encode_numericentity() expects parameter 4 to be boolean, ' . \gettype($s) . ' given', \E_USER_WARNING);
+ return null;
+ }
+ $s = (string) $s;
+ if ('' === $s) {
+ return '';
+ }
+ $encoding = self::getEncoding($encoding);
+ if ('UTF-8' === $encoding) {
+ $encoding = null;
+ if (!\preg_match('//u', $s)) {
+ $s = @\iconv('UTF-8', 'UTF-8//IGNORE', $s);
+ }
+ } else {
+ $s = \iconv($encoding, 'UTF-8//IGNORE', $s);
+ }
+ static $ulenMask = ["À" => 2, "Ð" => 2, "à" => 3, "ð" => 4];
+ $cnt = \floor(\count($convmap) / 4) * 4;
+ $i = 0;
+ $len = \strlen($s);
+ $result = '';
+ while ($i < $len) {
+ $ulen = $s[$i] < "€" ? 1 : $ulenMask[$s[$i] & "ð"];
+ $uchr = \substr($s, $i, $ulen);
+ $i += $ulen;
+ $c = self::mb_ord($uchr);
+ for ($j = 0; $j < $cnt; $j += 4) {
+ if ($c >= $convmap[$j] && $c <= $convmap[$j + 1]) {
+ $cOffset = $c + $convmap[$j + 2] & $convmap[$j + 3];
+ $result .= $is_hex ? \sprintf('%X;', $cOffset) : '' . $cOffset . ';';
+ continue 2;
+ }
+ }
+ $result .= $uchr;
+ }
+ if (null === $encoding) {
+ return $result;
+ }
+ return \iconv('UTF-8', $encoding . '//IGNORE', $result);
+ }
+ public static function mb_convert_case($s, $mode, $encoding = null)
+ {
+ $s = (string) $s;
+ if ('' === $s) {
+ return '';
+ }
+ $encoding = self::getEncoding($encoding);
+ if ('UTF-8' === $encoding) {
+ $encoding = null;
+ if (!\preg_match('//u', $s)) {
+ $s = @\iconv('UTF-8', 'UTF-8//IGNORE', $s);
+ }
+ } else {
+ $s = \iconv($encoding, 'UTF-8//IGNORE', $s);
+ }
+ if (\MB_CASE_TITLE == $mode) {
+ static $titleRegexp = null;
+ if (null === $titleRegexp) {
+ $titleRegexp = self::getData('titleCaseRegexp');
+ }
+ $s = \preg_replace_callback($titleRegexp, [__CLASS__, 'title_case'], $s);
+ } else {
+ if (\MB_CASE_UPPER == $mode) {
+ static $upper = null;
+ if (null === $upper) {
+ $upper = self::getData('upperCase');
+ }
+ $map = $upper;
+ } else {
+ if (self::MB_CASE_FOLD === $mode) {
+ $s = \str_replace(self::$caseFold[0], self::$caseFold[1], $s);
+ }
+ static $lower = null;
+ if (null === $lower) {
+ $lower = self::getData('lowerCase');
+ }
+ $map = $lower;
+ }
+ static $ulenMask = ["À" => 2, "Ð" => 2, "à" => 3, "ð" => 4];
+ $i = 0;
+ $len = \strlen($s);
+ while ($i < $len) {
+ $ulen = $s[$i] < "€" ? 1 : $ulenMask[$s[$i] & "ð"];
+ $uchr = \substr($s, $i, $ulen);
+ $i += $ulen;
+ if (isset($map[$uchr])) {
+ $uchr = $map[$uchr];
+ $nlen = \strlen($uchr);
+ if ($nlen == $ulen) {
+ $nlen = $i;
+ do {
+ $s[--$nlen] = $uchr[--$ulen];
+ } while ($ulen);
+ } else {
+ $s = \substr_replace($s, $uchr, $i - $ulen, $ulen);
+ $len += $nlen - $ulen;
+ $i += $nlen - $ulen;
+ }
+ }
+ }
+ }
+ if (null === $encoding) {
+ return $s;
+ }
+ return \iconv('UTF-8', $encoding . '//IGNORE', $s);
+ }
+ public static function mb_internal_encoding($encoding = null)
+ {
+ if (null === $encoding) {
+ return self::$internalEncoding;
+ }
+ $normalizedEncoding = self::getEncoding($encoding);
+ if ('UTF-8' === $normalizedEncoding || \false !== @\iconv($normalizedEncoding, $normalizedEncoding, ' ')) {
+ self::$internalEncoding = $normalizedEncoding;
+ return \true;
+ }
+ if (80000 > \PHP_VERSION_ID) {
+ return \false;
+ }
+ throw new \ValueError(\sprintf('Argument #1 ($encoding) must be a valid encoding, "%s" given', $encoding));
+ }
+ public static function mb_language($lang = null)
+ {
+ if (null === $lang) {
+ return self::$language;
+ }
+ switch ($normalizedLang = \strtolower($lang)) {
+ case 'uni':
+ case 'neutral':
+ self::$language = $normalizedLang;
+ return \true;
+ }
+ if (80000 > \PHP_VERSION_ID) {
+ return \false;
+ }
+ throw new \ValueError(\sprintf('Argument #1 ($language) must be a valid language, "%s" given', $lang));
+ }
+ public static function mb_list_encodings()
+ {
+ return ['UTF-8'];
+ }
+ public static function mb_encoding_aliases($encoding)
+ {
+ switch (\strtoupper($encoding)) {
+ case 'UTF8':
+ case 'UTF-8':
+ return ['utf8'];
+ }
+ return \false;
+ }
+ public static function mb_check_encoding($var = null, $encoding = null)
+ {
+ if (null === $encoding) {
+ if (null === $var) {
+ return \false;
+ }
+ $encoding = self::$internalEncoding;
+ }
+ return self::mb_detect_encoding($var, [$encoding]) || \false !== @\iconv($encoding, $encoding, $var);
+ }
+ public static function mb_detect_encoding($str, $encodingList = null, $strict = \false)
+ {
+ if (null === $encodingList) {
+ $encodingList = self::$encodingList;
+ } else {
+ if (!\is_array($encodingList)) {
+ $encodingList = \array_map('trim', \explode(',', $encodingList));
+ }
+ $encodingList = \array_map('strtoupper', $encodingList);
+ }
+ foreach ($encodingList as $enc) {
+ switch ($enc) {
+ case 'ASCII':
+ if (!\preg_match('/[\\x80-\\xFF]/', $str)) {
+ return $enc;
+ }
+ break;
+ case 'UTF8':
+ case 'UTF-8':
+ if (\preg_match('//u', $str)) {
+ return 'UTF-8';
+ }
+ break;
+ default:
+ if (0 === \strncmp($enc, 'ISO-8859-', 9)) {
+ return $enc;
+ }
+ }
+ }
+ return \false;
+ }
+ public static function mb_detect_order($encodingList = null)
+ {
+ if (null === $encodingList) {
+ return self::$encodingList;
+ }
+ if (!\is_array($encodingList)) {
+ $encodingList = \array_map('trim', \explode(',', $encodingList));
+ }
+ $encodingList = \array_map('strtoupper', $encodingList);
+ foreach ($encodingList as $enc) {
+ switch ($enc) {
+ default:
+ if (\strncmp($enc, 'ISO-8859-', 9)) {
+ return \false;
+ }
+ // no break
+ case 'ASCII':
+ case 'UTF8':
+ case 'UTF-8':
+ }
+ }
+ self::$encodingList = $encodingList;
+ return \true;
+ }
+ public static function mb_strlen($s, $encoding = null)
+ {
+ $encoding = self::getEncoding($encoding);
+ if ('CP850' === $encoding || 'ASCII' === $encoding) {
+ return \strlen($s);
+ }
+ return @\iconv_strlen($s, $encoding);
+ }
+ public static function mb_strpos($haystack, $needle, $offset = 0, $encoding = null)
+ {
+ $encoding = self::getEncoding($encoding);
+ if ('CP850' === $encoding || 'ASCII' === $encoding) {
+ return \strpos($haystack, $needle, $offset);
+ }
+ $needle = (string) $needle;
+ if ('' === $needle) {
+ if (80000 > \PHP_VERSION_ID) {
+ \trigger_error(__METHOD__ . ': Empty delimiter', \E_USER_WARNING);
+ return \false;
+ }
+ return 0;
+ }
+ return \iconv_strpos($haystack, $needle, $offset, $encoding);
+ }
+ public static function mb_strrpos($haystack, $needle, $offset = 0, $encoding = null)
+ {
+ $encoding = self::getEncoding($encoding);
+ if ('CP850' === $encoding || 'ASCII' === $encoding) {
+ return \strrpos($haystack, $needle, $offset);
+ }
+ if ($offset != (int) $offset) {
+ $offset = 0;
+ } elseif ($offset = (int) $offset) {
+ if ($offset < 0) {
+ if (0 > ($offset += self::mb_strlen($needle))) {
+ $haystack = self::mb_substr($haystack, 0, $offset, $encoding);
+ }
+ $offset = 0;
+ } else {
+ $haystack = self::mb_substr($haystack, $offset, 2147483647, $encoding);
+ }
+ }
+ $pos = '' !== $needle || 80000 > \PHP_VERSION_ID ? \iconv_strrpos($haystack, $needle, $encoding) : self::mb_strlen($haystack, $encoding);
+ return \false !== $pos ? $offset + $pos : \false;
+ }
+ public static function mb_str_split($string, $split_length = 1, $encoding = null)
+ {
+ if (null !== $string && !\is_scalar($string) && !(\is_object($string) && \method_exists($string, '__toString'))) {
+ \trigger_error('mb_str_split() expects parameter 1 to be string, ' . \gettype($string) . ' given', \E_USER_WARNING);
+ return null;
+ }
+ if (1 > ($split_length = (int) $split_length)) {
+ if (80000 > \PHP_VERSION_ID) {
+ \trigger_error('The length of each segment must be greater than zero', \E_USER_WARNING);
+ return \false;
+ }
+ throw new \ValueError('Argument #2 ($length) must be greater than 0');
+ }
+ if (null === $encoding) {
+ $encoding = \mb_internal_encoding();
+ }
+ if ('UTF-8' === ($encoding = self::getEncoding($encoding))) {
+ $rx = '/(';
+ while (65535 < $split_length) {
+ $rx .= '.{65535}';
+ $split_length -= 65535;
+ }
+ $rx .= '.{' . $split_length . '})/us';
+ return \preg_split($rx, $string, null, \PREG_SPLIT_DELIM_CAPTURE | \PREG_SPLIT_NO_EMPTY);
+ }
+ $result = [];
+ $length = \mb_strlen($string, $encoding);
+ for ($i = 0; $i < $length; $i += $split_length) {
+ $result[] = \mb_substr($string, $i, $split_length, $encoding);
+ }
+ return $result;
+ }
+ public static function mb_strtolower($s, $encoding = null)
+ {
+ return self::mb_convert_case($s, \MB_CASE_LOWER, $encoding);
+ }
+ public static function mb_strtoupper($s, $encoding = null)
+ {
+ return self::mb_convert_case($s, \MB_CASE_UPPER, $encoding);
+ }
+ public static function mb_substitute_character($c = null)
+ {
+ if (null === $c) {
+ return 'none';
+ }
+ if (0 === \strcasecmp($c, 'none')) {
+ return \true;
+ }
+ if (80000 > \PHP_VERSION_ID) {
+ return \false;
+ }
+ throw new \ValueError('Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepoint');
+ }
+ public static function mb_substr($s, $start, $length = null, $encoding = null)
+ {
+ $encoding = self::getEncoding($encoding);
+ if ('CP850' === $encoding || 'ASCII' === $encoding) {
+ return (string) \substr($s, $start, null === $length ? 2147483647 : $length);
+ }
+ if ($start < 0) {
+ $start = \iconv_strlen($s, $encoding) + $start;
+ if ($start < 0) {
+ $start = 0;
+ }
+ }
+ if (null === $length) {
+ $length = 2147483647;
+ } elseif ($length < 0) {
+ $length = \iconv_strlen($s, $encoding) + $length - $start;
+ if ($length < 0) {
+ return '';
+ }
+ }
+ return (string) \iconv_substr($s, $start, $length, $encoding);
+ }
+ public static function mb_stripos($haystack, $needle, $offset = 0, $encoding = null)
+ {
+ $haystack = self::mb_convert_case($haystack, self::MB_CASE_FOLD, $encoding);
+ $needle = self::mb_convert_case($needle, self::MB_CASE_FOLD, $encoding);
+ return self::mb_strpos($haystack, $needle, $offset, $encoding);
+ }
+ public static function mb_stristr($haystack, $needle, $part = \false, $encoding = null)
+ {
+ $pos = self::mb_stripos($haystack, $needle, 0, $encoding);
+ return self::getSubpart($pos, $part, $haystack, $encoding);
+ }
+ public static function mb_strrchr($haystack, $needle, $part = \false, $encoding = null)
+ {
+ $encoding = self::getEncoding($encoding);
+ if ('CP850' === $encoding || 'ASCII' === $encoding) {
+ $pos = \strrpos($haystack, $needle);
+ } else {
+ $needle = self::mb_substr($needle, 0, 1, $encoding);
+ $pos = \iconv_strrpos($haystack, $needle, $encoding);
+ }
+ return self::getSubpart($pos, $part, $haystack, $encoding);
+ }
+ public static function mb_strrichr($haystack, $needle, $part = \false, $encoding = null)
+ {
+ $needle = self::mb_substr($needle, 0, 1, $encoding);
+ $pos = self::mb_strripos($haystack, $needle, $encoding);
+ return self::getSubpart($pos, $part, $haystack, $encoding);
+ }
+ public static function mb_strripos($haystack, $needle, $offset = 0, $encoding = null)
+ {
+ $haystack = self::mb_convert_case($haystack, self::MB_CASE_FOLD, $encoding);
+ $needle = self::mb_convert_case($needle, self::MB_CASE_FOLD, $encoding);
+ return self::mb_strrpos($haystack, $needle, $offset, $encoding);
+ }
+ public static function mb_strstr($haystack, $needle, $part = \false, $encoding = null)
+ {
+ $pos = \strpos($haystack, $needle);
+ if (\false === $pos) {
+ return \false;
+ }
+ if ($part) {
+ return \substr($haystack, 0, $pos);
+ }
+ return \substr($haystack, $pos);
+ }
+ public static function mb_get_info($type = 'all')
+ {
+ $info = ['internal_encoding' => self::$internalEncoding, 'http_output' => 'pass', 'http_output_conv_mimetypes' => '^(text/|application/xhtml\\+xml)', 'func_overload' => 0, 'func_overload_list' => 'no overload', 'mail_charset' => 'UTF-8', 'mail_header_encoding' => 'BASE64', 'mail_body_encoding' => 'BASE64', 'illegal_chars' => 0, 'encoding_translation' => 'Off', 'language' => self::$language, 'detect_order' => self::$encodingList, 'substitute_character' => 'none', 'strict_detection' => 'Off'];
+ if ('all' === $type) {
+ return $info;
+ }
+ if (isset($info[$type])) {
+ return $info[$type];
+ }
+ return \false;
+ }
+ public static function mb_http_input($type = '')
+ {
+ return \false;
+ }
+ public static function mb_http_output($encoding = null)
+ {
+ return null !== $encoding ? 'pass' === $encoding : 'pass';
+ }
+ public static function mb_strwidth($s, $encoding = null)
+ {
+ $encoding = self::getEncoding($encoding);
+ if ('UTF-8' !== $encoding) {
+ $s = \iconv($encoding, 'UTF-8//IGNORE', $s);
+ }
+ $s = \preg_replace('/[\\x{1100}-\\x{115F}\\x{2329}\\x{232A}\\x{2E80}-\\x{303E}\\x{3040}-\\x{A4CF}\\x{AC00}-\\x{D7A3}\\x{F900}-\\x{FAFF}\\x{FE10}-\\x{FE19}\\x{FE30}-\\x{FE6F}\\x{FF00}-\\x{FF60}\\x{FFE0}-\\x{FFE6}\\x{20000}-\\x{2FFFD}\\x{30000}-\\x{3FFFD}]/u', '', $s, -1, $wide);
+ return ($wide << 1) + \iconv_strlen($s, 'UTF-8');
+ }
+ public static function mb_substr_count($haystack, $needle, $encoding = null)
+ {
+ return \substr_count($haystack, $needle);
+ }
+ public static function mb_output_handler($contents, $status)
+ {
+ return $contents;
+ }
+ public static function mb_chr($code, $encoding = null)
+ {
+ if (0x80 > ($code %= 0x200000)) {
+ $s = \chr($code);
+ } elseif (0x800 > $code) {
+ $s = \chr(0xc0 | $code >> 6) . \chr(0x80 | $code & 0x3f);
+ } elseif (0x10000 > $code) {
+ $s = \chr(0xe0 | $code >> 12) . \chr(0x80 | $code >> 6 & 0x3f) . \chr(0x80 | $code & 0x3f);
+ } else {
+ $s = \chr(0xf0 | $code >> 18) . \chr(0x80 | $code >> 12 & 0x3f) . \chr(0x80 | $code >> 6 & 0x3f) . \chr(0x80 | $code & 0x3f);
+ }
+ if ('UTF-8' !== ($encoding = self::getEncoding($encoding))) {
+ $s = \mb_convert_encoding($s, $encoding, 'UTF-8');
+ }
+ return $s;
+ }
+ public static function mb_ord($s, $encoding = null)
+ {
+ if ('UTF-8' !== ($encoding = self::getEncoding($encoding))) {
+ $s = \mb_convert_encoding($s, 'UTF-8', $encoding);
+ }
+ if (1 === \strlen($s)) {
+ return \ord($s);
+ }
+ $code = ($s = \unpack('C*', \substr($s, 0, 4))) ? $s[1] : 0;
+ if (0xf0 <= $code) {
+ return ($code - 0xf0 << 18) + ($s[2] - 0x80 << 12) + ($s[3] - 0x80 << 6) + $s[4] - 0x80;
+ }
+ if (0xe0 <= $code) {
+ return ($code - 0xe0 << 12) + ($s[2] - 0x80 << 6) + $s[3] - 0x80;
+ }
+ if (0xc0 <= $code) {
+ return ($code - 0xc0 << 6) + $s[2] - 0x80;
+ }
+ return $code;
+ }
+ private static function getSubpart($pos, $part, $haystack, $encoding)
+ {
+ if (\false === $pos) {
+ return \false;
+ }
+ if ($part) {
+ return self::mb_substr($haystack, 0, $pos, $encoding);
+ }
+ return self::mb_substr($haystack, $pos, null, $encoding);
+ }
+ private static function html_encoding_callback(array $m)
+ {
+ $i = 1;
+ $entities = '';
+ $m = \unpack('C*', \htmlentities($m[0], \ENT_COMPAT, 'UTF-8'));
+ while (isset($m[$i])) {
+ if (0x80 > $m[$i]) {
+ $entities .= \chr($m[$i++]);
+ continue;
+ }
+ if (0xf0 <= $m[$i]) {
+ $c = ($m[$i++] - 0xf0 << 18) + ($m[$i++] - 0x80 << 12) + ($m[$i++] - 0x80 << 6) + $m[$i++] - 0x80;
+ } elseif (0xe0 <= $m[$i]) {
+ $c = ($m[$i++] - 0xe0 << 12) + ($m[$i++] - 0x80 << 6) + $m[$i++] - 0x80;
+ } else {
+ $c = ($m[$i++] - 0xc0 << 6) + $m[$i++] - 0x80;
+ }
+ $entities .= '' . $c . ';';
+ }
+ return $entities;
+ }
+ private static function title_case(array $s)
+ {
+ return self::mb_convert_case($s[1], \MB_CASE_UPPER, 'UTF-8') . self::mb_convert_case($s[2], \MB_CASE_LOWER, 'UTF-8');
+ }
+ private static function getData($file)
+ {
+ if (\file_exists($file = __DIR__ . '/Resources/unidata/' . $file . '.php')) {
+ return require $file;
+ }
+ return \false;
+ }
+ private static function getEncoding($encoding)
+ {
+ if (null === $encoding) {
+ return self::$internalEncoding;
+ }
+ if ('UTF-8' === $encoding) {
+ return 'UTF-8';
+ }
+ $encoding = \strtoupper($encoding);
+ if ('8BIT' === $encoding || 'BINARY' === $encoding) {
+ return 'CP850';
+ }
+ if ('UTF8' === $encoding) {
+ return 'UTF-8';
+ }
+ return $encoding;
+ }
+}
diff --git a/vendor_prefixed/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php b/vendor_prefixed/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php
new file mode 100644
index 00000000..dcf5d594
--- /dev/null
+++ b/vendor_prefixed/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php
@@ -0,0 +1,5 @@
+ 'a', 'B' => 'b', 'C' => 'c', 'D' => 'd', 'E' => 'e', 'F' => 'f', 'G' => 'g', 'H' => 'h', 'I' => 'i', 'J' => 'j', 'K' => 'k', 'L' => 'l', 'M' => 'm', 'N' => 'n', 'O' => 'o', 'P' => 'p', 'Q' => 'q', 'R' => 'r', 'S' => 's', 'T' => 't', 'U' => 'u', 'V' => 'v', 'W' => 'w', 'X' => 'x', 'Y' => 'y', 'Z' => 'z', 'À' => 'à ', 'Ã' => 'á', 'Â' => 'â', 'Ã' => 'ã', 'Ä' => 'ä', 'Ã…' => 'Ã¥', 'Æ' => 'æ', 'Ç' => 'ç', 'È' => 'è', 'É' => 'é', 'Ê' => 'ê', 'Ë' => 'ë', 'ÃŒ' => 'ì', 'Ã' => 'Ã', 'ÃŽ' => 'î', 'Ã' => 'ï', 'Ã' => 'ð', 'Ñ' => 'ñ', 'Ã’' => 'ò', 'Ó' => 'ó', 'Ô' => 'ô', 'Õ' => 'õ', 'Ö' => 'ö', 'Ø' => 'ø', 'Ù' => 'ù', 'Ú' => 'ú', 'Û' => 'û', 'Ü' => 'ü', 'Ã' => 'ý', 'Þ' => 'þ', 'Ä€' => 'Ä', 'Ä‚' => 'ă', 'Ä„' => 'Ä…', 'Ć' => 'ć', 'Ĉ' => 'ĉ', 'ÄŠ' => 'Ä‹', 'ÄŒ' => 'Ä', 'ÄŽ' => 'Ä', 'Ä' => 'Ä‘', 'Ä’' => 'Ä“', 'Ä”' => 'Ä•', 'Ä–' => 'Ä—', 'Ę' => 'Ä™', 'Äš' => 'Ä›', 'Äœ' => 'Ä', 'Äž' => 'ÄŸ', 'Ä ' => 'Ä¡', 'Ä¢' => 'Ä£', 'Ĥ' => 'Ä¥', 'Ħ' => 'ħ', 'Ĩ' => 'Ä©', 'Ī' => 'Ä«', 'Ĭ' => 'Ä', 'Ä®' => 'į', 'İ' => 'i', 'IJ' => 'ij', 'Ä´' => 'ĵ', 'Ķ' => 'Ä·', 'Ĺ' => 'ĺ', 'Ä»' => 'ļ', 'Ľ' => 'ľ', 'Ä¿' => 'Å€', 'Å' => 'Å‚', 'Ń' => 'Å„', 'Å…' => 'ņ', 'Ň' => 'ň', 'ÅŠ' => 'Å‹', 'ÅŒ' => 'Å', 'ÅŽ' => 'Å', 'Å' => 'Å‘', 'Å’' => 'Å“', 'Å”' => 'Å•', 'Å–' => 'Å—', 'Ř' => 'Å™', 'Åš' => 'Å›', 'Åœ' => 'Å', 'Åž' => 'ÅŸ', 'Å ' => 'Å¡', 'Å¢' => 'Å£', 'Ť' => 'Å¥', 'Ŧ' => 'ŧ', 'Ũ' => 'Å©', 'Ū' => 'Å«', 'Ŭ' => 'Å', 'Å®' => 'ů', 'Ű' => 'ű', 'Ų' => 'ų', 'Å´' => 'ŵ', 'Ŷ' => 'Å·', 'Ÿ' => 'ÿ', 'Ź' => 'ź', 'Å»' => 'ż', 'Ž' => 'ž', 'Æ' => 'É“', 'Æ‚' => 'ƃ', 'Æ„' => 'Æ…', 'Ɔ' => 'É”', 'Ƈ' => 'ƈ', 'Ɖ' => 'É–', 'ÆŠ' => 'É—', 'Æ‹' => 'ÆŒ', 'ÆŽ' => 'Ç', 'Æ' => 'É™', 'Æ' => 'É›', 'Æ‘' => 'Æ’', 'Æ“' => 'É ', 'Æ”' => 'É£', 'Æ–' => 'É©', 'Æ—' => 'ɨ', 'Ƙ' => 'Æ™', 'Æœ' => 'ɯ', 'Æ' => 'ɲ', 'ÆŸ' => 'ɵ', 'Æ ' => 'Æ¡', 'Æ¢' => 'Æ£', 'Ƥ' => 'Æ¥', 'Ʀ' => 'Ê€', 'Ƨ' => 'ƨ', 'Æ©' => 'ʃ', 'Ƭ' => 'Æ', 'Æ®' => 'ʈ', 'Ư' => 'ư', 'Ʊ' => 'ÊŠ', 'Ʋ' => 'Ê‹', 'Ƴ' => 'Æ´', 'Ƶ' => 'ƶ', 'Æ·' => 'Ê’', 'Ƹ' => 'ƹ', 'Ƽ' => 'ƽ', 'Ç„' => 'dž', 'Ç…' => 'dž', 'LJ' => 'lj', 'Lj' => 'lj', 'ÇŠ' => 'ÇŒ', 'Ç‹' => 'ÇŒ', 'Ç' => 'ÇŽ', 'Ç' => 'Ç', 'Ç‘' => 'Ç’', 'Ç“' => 'Ç”', 'Ç•' => 'Ç–', 'Ç—' => 'ǘ', 'Ç™' => 'Çš', 'Ç›' => 'Çœ', 'Çž' => 'ÇŸ', 'Ç ' => 'Ç¡', 'Ç¢' => 'Ç£', 'Ǥ' => 'Ç¥', 'Ǧ' => 'ǧ', 'Ǩ' => 'Ç©', 'Ǫ' => 'Ç«', 'Ǭ' => 'Ç', 'Ç®' => 'ǯ', 'DZ' => 'dz', 'Dz' => 'dz', 'Ç´' => 'ǵ', 'Ƕ' => 'Æ•', 'Ç·' => 'Æ¿', 'Ǹ' => 'ǹ', 'Ǻ' => 'Ç»', 'Ǽ' => 'ǽ', 'Ǿ' => 'Ç¿', 'È€' => 'È', 'È‚' => 'ȃ', 'È„' => 'È…', 'Ȇ' => 'ȇ', 'Ȉ' => 'ȉ', 'ÈŠ' => 'È‹', 'ÈŒ' => 'È', 'ÈŽ' => 'È', 'È' => 'È‘', 'È’' => 'È“', 'È”' => 'È•', 'È–' => 'È—', 'Ș' => 'È™', 'Èš' => 'È›', 'Èœ' => 'È', 'Èž' => 'ÈŸ', 'È ' => 'Æž', 'È¢' => 'È£', 'Ȥ' => 'È¥', 'Ȧ' => 'ȧ', 'Ȩ' => 'È©', 'Ȫ' => 'È«', 'Ȭ' => 'È', 'È®' => 'ȯ', 'Ȱ' => 'ȱ', 'Ȳ' => 'ȳ', 'Ⱥ' => 'â±¥', 'È»' => 'ȼ', 'Ƚ' => 'Æš', 'Ⱦ' => 'ⱦ', 'É' => 'É‚', 'Ƀ' => 'Æ€', 'É„' => 'ʉ', 'É…' => 'ÊŒ', 'Ɇ' => 'ɇ', 'Ɉ' => 'ɉ', 'ÉŠ' => 'É‹', 'ÉŒ' => 'É', 'ÉŽ' => 'É', 'Ͱ' => 'ͱ', 'Ͳ' => 'ͳ', 'Ͷ' => 'Í·', 'Í¿' => 'ϳ', 'Ά' => 'ά', 'Έ' => 'Î', 'Ή' => 'ή', 'Ί' => 'ί', 'ÎŒ' => 'ÏŒ', 'ÎŽ' => 'Ï', 'Î' => 'ÏŽ', 'Α' => 'α', 'Î’' => 'β', 'Γ' => 'γ', 'Δ' => 'δ', 'Ε' => 'ε', 'Ζ' => 'ζ', 'Η' => 'η', 'Θ' => 'θ', 'Ι' => 'ι', 'Κ' => 'κ', 'Λ' => 'λ', 'Μ' => 'μ', 'Î' => 'ν', 'Ξ' => 'ξ', 'Ο' => 'ο', 'Î ' => 'Ï€', 'Ρ' => 'Ï', 'Σ' => 'σ', 'Τ' => 'Ï„', 'Î¥' => 'Ï…', 'Φ' => 'φ', 'Χ' => 'χ', 'Ψ' => 'ψ', 'Ω' => 'ω', 'Ϊ' => 'ÏŠ', 'Ϋ' => 'Ï‹', 'Ï' => 'Ï—', 'Ϙ' => 'Ï™', 'Ïš' => 'Ï›', 'Ïœ' => 'Ï', 'Ïž' => 'ÏŸ', 'Ï ' => 'Ï¡', 'Ï¢' => 'Ï£', 'Ϥ' => 'Ï¥', 'Ϧ' => 'ϧ', 'Ϩ' => 'Ï©', 'Ϫ' => 'Ï«', 'Ϭ' => 'Ï', 'Ï®' => 'ϯ', 'Ï´' => 'θ', 'Ï·' => 'ϸ', 'Ϲ' => 'ϲ', 'Ϻ' => 'Ï»', 'Ͻ' => 'Í»', 'Ͼ' => 'ͼ', 'Ï¿' => 'ͽ', 'Ѐ' => 'Ñ', 'Ð' => 'Ñ‘', 'Ђ' => 'Ñ’', 'Ѓ' => 'Ñ“', 'Є' => 'Ñ”', 'Ð…' => 'Ñ•', 'І' => 'Ñ–', 'Ї' => 'Ñ—', 'Ј' => 'ј', 'Љ' => 'Ñ™', 'Њ' => 'Ñš', 'Ћ' => 'Ñ›', 'ÐŒ' => 'Ñœ', 'Ð' => 'Ñ', 'ÐŽ' => 'Ñž', 'Ð' => 'ÑŸ', 'Ð' => 'а', 'Б' => 'б', 'Ð’' => 'в', 'Г' => 'г', 'Д' => 'д', 'Е' => 'е', 'Ж' => 'ж', 'З' => 'з', 'И' => 'и', 'Й' => 'й', 'К' => 'к', 'Л' => 'л', 'М' => 'м', 'Ð' => 'н', 'О' => 'о', 'П' => 'п', 'Ð ' => 'Ñ€', 'С' => 'Ñ', 'Т' => 'Ñ‚', 'У' => 'у', 'Ф' => 'Ñ„', 'Ð¥' => 'Ñ…', 'Ц' => 'ц', 'Ч' => 'ч', 'Ш' => 'ш', 'Щ' => 'щ', 'Ъ' => 'ÑŠ', 'Ы' => 'Ñ‹', 'Ь' => 'ÑŒ', 'Ð' => 'Ñ', 'Ю' => 'ÑŽ', 'Я' => 'Ñ', 'Ñ ' => 'Ñ¡', 'Ñ¢' => 'Ñ£', 'Ѥ' => 'Ñ¥', 'Ѧ' => 'ѧ', 'Ѩ' => 'Ñ©', 'Ѫ' => 'Ñ«', 'Ѭ' => 'Ñ', 'Ñ®' => 'ѯ', 'Ѱ' => 'ѱ', 'Ѳ' => 'ѳ', 'Ñ´' => 'ѵ', 'Ѷ' => 'Ñ·', 'Ѹ' => 'ѹ', 'Ѻ' => 'Ñ»', 'Ѽ' => 'ѽ', 'Ѿ' => 'Ñ¿', 'Ò€' => 'Ò', 'ÒŠ' => 'Ò‹', 'ÒŒ' => 'Ò', 'ÒŽ' => 'Ò', 'Ò' => 'Ò‘', 'Ò’' => 'Ò“', 'Ò”' => 'Ò•', 'Ò–' => 'Ò—', 'Ò˜' => 'Ò™', 'Òš' => 'Ò›', 'Òœ' => 'Ò', 'Òž' => 'ÒŸ', 'Ò ' => 'Ò¡', 'Ò¢' => 'Ò£', 'Ò¤' => 'Ò¥', 'Ò¦' => 'Ò§', 'Ò¨' => 'Ò©', 'Òª' => 'Ò«', 'Ò¬' => 'Ò', 'Ò®' => 'Ò¯', 'Ò°' => 'Ò±', 'Ò²' => 'Ò³', 'Ò´' => 'Òµ', 'Ò¶' => 'Ò·', 'Ò¸' => 'Ò¹', 'Òº' => 'Ò»', 'Ò¼' => 'Ò½', 'Ò¾' => 'Ò¿', 'Ó€' => 'Ó', 'Ó' => 'Ó‚', 'Óƒ' => 'Ó„', 'Ó…' => 'Ó†', 'Ó‡' => 'Óˆ', 'Ó‰' => 'ÓŠ', 'Ó‹' => 'ÓŒ', 'Ó' => 'ÓŽ', 'Ó' => 'Ó‘', 'Ó’' => 'Ó“', 'Ó”' => 'Ó•', 'Ó–' => 'Ó—', 'Ó˜' => 'Ó™', 'Óš' => 'Ó›', 'Óœ' => 'Ó', 'Óž' => 'ÓŸ', 'Ó ' => 'Ó¡', 'Ó¢' => 'Ó£', 'Ó¤' => 'Ó¥', 'Ó¦' => 'Ó§', 'Ó¨' => 'Ó©', 'Óª' => 'Ó«', 'Ó¬' => 'Ó', 'Ó®' => 'Ó¯', 'Ó°' => 'Ó±', 'Ó²' => 'Ó³', 'Ó´' => 'Óµ', 'Ó¶' => 'Ó·', 'Ó¸' => 'Ó¹', 'Óº' => 'Ó»', 'Ó¼' => 'Ó½', 'Ó¾' => 'Ó¿', 'Ô€' => 'Ô', 'Ô‚' => 'Ôƒ', 'Ô„' => 'Ô…', 'Ô†' => 'Ô‡', 'Ôˆ' => 'Ô‰', 'ÔŠ' => 'Ô‹', 'ÔŒ' => 'Ô', 'ÔŽ' => 'Ô', 'Ô' => 'Ô‘', 'Ô’' => 'Ô“', 'Ô”' => 'Ô•', 'Ô–' => 'Ô—', 'Ô˜' => 'Ô™', 'Ôš' => 'Ô›', 'Ôœ' => 'Ô', 'Ôž' => 'ÔŸ', 'Ô ' => 'Ô¡', 'Ô¢' => 'Ô£', 'Ô¤' => 'Ô¥', 'Ô¦' => 'Ô§', 'Ô¨' => 'Ô©', 'Ôª' => 'Ô«', 'Ô¬' => 'Ô', 'Ô®' => 'Ô¯', 'Ô±' => 'Õ¡', 'Ô²' => 'Õ¢', 'Ô³' => 'Õ£', 'Ô´' => 'Õ¤', 'Ôµ' => 'Õ¥', 'Ô¶' => 'Õ¦', 'Ô·' => 'Õ§', 'Ô¸' => 'Õ¨', 'Ô¹' => 'Õ©', 'Ôº' => 'Õª', 'Ô»' => 'Õ«', 'Ô¼' => 'Õ¬', 'Ô½' => 'Õ', 'Ô¾' => 'Õ®', 'Ô¿' => 'Õ¯', 'Õ€' => 'Õ°', 'Õ' => 'Õ±', 'Õ‚' => 'Õ²', 'Õƒ' => 'Õ³', 'Õ„' => 'Õ´', 'Õ…' => 'Õµ', 'Õ†' => 'Õ¶', 'Õ‡' => 'Õ·', 'Õˆ' => 'Õ¸', 'Õ‰' => 'Õ¹', 'ÕŠ' => 'Õº', 'Õ‹' => 'Õ»', 'ÕŒ' => 'Õ¼', 'Õ' => 'Õ½', 'ÕŽ' => 'Õ¾', 'Õ' => 'Õ¿', 'Õ' => 'Ö€', 'Õ‘' => 'Ö', 'Õ’' => 'Ö‚', 'Õ“' => 'Öƒ', 'Õ”' => 'Ö„', 'Õ•' => 'Ö…', 'Õ–' => 'Ö†', 'á‚ ' => 'â´€', 'á‚¡' => 'â´', 'á‚¢' => 'â´‚', 'á‚£' => 'â´ƒ', 'Ⴄ' => 'â´„', 'á‚¥' => 'â´…', 'Ⴆ' => 'â´†', 'á‚§' => 'â´‡', 'Ⴈ' => 'â´ˆ', 'á‚©' => 'â´‰', 'Ⴊ' => 'â´Š', 'á‚«' => 'â´‹', 'Ⴌ' => 'â´Œ', 'á‚' => 'â´', 'á‚®' => 'â´Ž', 'Ⴏ' => 'â´', 'á‚°' => 'â´', 'Ⴑ' => 'â´‘', 'Ⴒ' => 'â´’', 'Ⴓ' => 'â´“', 'á‚´' => 'â´”', 'Ⴕ' => 'â´•', 'á‚¶' => 'â´–', 'á‚·' => 'â´—', 'Ⴘ' => 'â´˜', 'Ⴙ' => 'â´™', 'Ⴚ' => 'â´š', 'á‚»' => 'â´›', 'Ⴜ' => 'â´œ', 'Ⴝ' => 'â´', 'Ⴞ' => 'â´ž', 'á‚¿' => 'â´Ÿ', 'Ⴠ' => 'â´ ', 'áƒ' => 'â´¡', 'Ⴢ' => 'â´¢', 'Ⴣ' => 'â´£', 'Ⴤ' => 'â´¤', 'Ⴥ' => 'â´¥', 'Ⴧ' => 'â´§', 'áƒ' => 'â´', 'Ꭰ' => 'ê°', 'Ꭱ' => 'ê±', 'Ꭲ' => 'ê²', 'Ꭳ' => 'ê³', 'Ꭴ' => 'ê´', 'Ꭵ' => 'êµ', 'Ꭶ' => 'ê¶', 'Ꭷ' => 'ê·', 'Ꭸ' => 'ê¸', 'Ꭹ' => 'ê¹', 'Ꭺ' => 'êº', 'Ꭻ' => 'ê»', 'Ꭼ' => 'ê¼', 'áŽ' => 'ê½', 'Ꭾ' => 'ê¾', 'Ꭿ' => 'ê¿', 'Ꮀ' => 'ꮀ', 'Ꮁ' => 'ê®', 'Ꮂ' => 'ꮂ', 'Ꮃ' => 'ꮃ', 'Ꮄ' => 'ꮄ', 'Ꮅ' => 'ê®…', 'Ꮆ' => 'ꮆ', 'Ꮇ' => 'ꮇ', 'Ꮈ' => 'ꮈ', 'Ꮉ' => 'ꮉ', 'Ꮊ' => 'ꮊ', 'Ꮋ' => 'ꮋ', 'Ꮌ' => 'ꮌ', 'Ꮍ' => 'ê®', 'Ꮎ' => 'ꮎ', 'Ꮏ' => 'ê®', 'á€' => 'ê®', 'á' => 'ꮑ', 'á‚' => 'ê®’', 'áƒ' => 'ꮓ', 'á„' => 'ê®”', 'á…' => 'ꮕ', 'á†' => 'ê®–', 'á‡' => 'ê®—', 'áˆ' => 'ꮘ', 'á‰' => 'ê®™', 'áŠ' => 'ꮚ', 'á‹' => 'ê®›', 'áŒ' => 'ꮜ', 'á' => 'ê®', 'áŽ' => 'ꮞ', 'á' => 'ꮟ', 'á' => 'ê® ', 'á‘' => 'ꮡ', 'á’' => 'ꮢ', 'á“' => 'ꮣ', 'á”' => 'ꮤ', 'á•' => 'ꮥ', 'á–' => 'ꮦ', 'á—' => 'ê®§', 'á˜' => 'ꮨ', 'á™' => 'ꮩ', 'áš' => 'ꮪ', 'á›' => 'ꮫ', 'áœ' => 'ꮬ', 'á' => 'ê®', 'áž' => 'ê®®', 'áŸ' => 'ꮯ', 'á ' => 'ê®°', 'á¡' => 'ê®±', 'á¢' => 'ꮲ', 'á£' => 'ꮳ', 'á¤' => 'ê®´', 'á¥' => 'ꮵ', 'á¦' => 'ê®¶', 'á§' => 'ê®·', 'á¨' => 'ꮸ', 'á©' => 'ꮹ', 'áª' => 'ꮺ', 'á«' => 'ê®»', 'á¬' => 'ꮼ', 'á' => 'ꮽ', 'á®' => 'ꮾ', 'á¯' => 'ꮿ', 'á°' => 'á¸', 'á±' => 'á¹', 'á²' => 'áº', 'á³' => 'á»', 'á´' => 'á¼', 'áµ' => 'á½', 'á²' => 'áƒ', 'Ბ' => 'ბ', 'á²’' => 'გ', 'Დ' => 'დ', 'á²”' => 'ე', 'Ვ' => 'ვ', 'á²–' => 'ზ', 'á²—' => 'თ', 'Ი' => 'ი', 'á²™' => 'კ', 'Ლ' => 'ლ', 'á²›' => 'მ', 'Ნ' => 'ნ', 'á²' => 'áƒ', 'Პ' => 'პ', 'Ჟ' => 'ჟ', 'á² ' => 'რ', 'Ს' => 'ს', 'á²¢' => 'ტ', 'á²£' => 'უ', 'Ფ' => 'ფ', 'á²¥' => 'ქ', 'Ღ' => 'ღ', 'á²§' => 'ყ', 'Შ' => 'შ', 'Ჩ' => 'ჩ', 'Ც' => 'ც', 'Ძ' => 'ძ', 'Წ' => 'წ', 'á²' => 'áƒ', 'á²®' => 'ხ', 'Ჯ' => 'ჯ', 'á²°' => 'ჰ', 'á²±' => 'ჱ', 'á²²' => 'ჲ', 'á²³' => 'ჳ', 'á²´' => 'ჴ', 'á²µ' => 'ჵ', 'á²¶' => 'ჶ', 'á²·' => 'ჷ', 'Ჸ' => 'ჸ', 'á²¹' => 'ჹ', 'Ჺ' => 'ჺ', 'á²½' => 'ჽ', 'á²¾' => 'ჾ', 'Ჿ' => 'ჿ', 'Ḁ' => 'á¸', 'Ḃ' => 'ḃ', 'Ḅ' => 'ḅ', 'Ḇ' => 'ḇ', 'Ḉ' => 'ḉ', 'Ḋ' => 'ḋ', 'Ḍ' => 'á¸', 'Ḏ' => 'á¸', 'á¸' => 'ḑ', 'Ḓ' => 'ḓ', 'Ḕ' => 'ḕ', 'Ḗ' => 'ḗ', 'Ḙ' => 'ḙ', 'Ḛ' => 'ḛ', 'Ḝ' => 'á¸', 'Ḟ' => 'ḟ', 'Ḡ' => 'ḡ', 'Ḣ' => 'ḣ', 'Ḥ' => 'ḥ', 'Ḧ' => 'ḧ', 'Ḩ' => 'ḩ', 'Ḫ' => 'ḫ', 'Ḭ' => 'á¸', 'Ḯ' => 'ḯ', 'Ḱ' => 'ḱ', 'Ḳ' => 'ḳ', 'Ḵ' => 'ḵ', 'Ḷ' => 'ḷ', 'Ḹ' => 'ḹ', 'Ḻ' => 'ḻ', 'Ḽ' => 'ḽ', 'Ḿ' => 'ḿ', 'á¹€' => 'á¹', 'Ṃ' => 'ṃ', 'Ṅ' => 'á¹…', 'Ṇ' => 'ṇ', 'Ṉ' => 'ṉ', 'Ṋ' => 'ṋ', 'Ṍ' => 'á¹', 'Ṏ' => 'á¹', 'á¹' => 'ṑ', 'á¹’' => 'ṓ', 'á¹”' => 'ṕ', 'á¹–' => 'á¹—', 'Ṙ' => 'á¹™', 'Ṛ' => 'á¹›', 'Ṝ' => 'á¹', 'Ṟ' => 'ṟ', 'á¹ ' => 'ṡ', 'á¹¢' => 'á¹£', 'Ṥ' => 'á¹¥', 'Ṧ' => 'á¹§', 'Ṩ' => 'ṩ', 'Ṫ' => 'ṫ', 'Ṭ' => 'á¹', 'á¹®' => 'ṯ', 'á¹°' => 'á¹±', 'á¹²' => 'á¹³', 'á¹´' => 'á¹µ', 'á¹¶' => 'á¹·', 'Ṹ' => 'á¹¹', 'Ṻ' => 'á¹»', 'á¹¼' => 'á¹½', 'á¹¾' => 'ṿ', 'Ẁ' => 'áº', 'Ẃ' => 'ẃ', 'Ẅ' => 'ẅ', 'Ẇ' => 'ẇ', 'Ẉ' => 'ẉ', 'Ẋ' => 'ẋ', 'Ẍ' => 'áº', 'Ẏ' => 'áº', 'áº' => 'ẑ', 'Ẓ' => 'ẓ', 'Ẕ' => 'ẕ', 'ẞ' => 'ß', 'Ạ' => 'ạ', 'Ả' => 'ả', 'Ấ' => 'ấ', 'Ầ' => 'ầ', 'Ẩ' => 'ẩ', 'Ẫ' => 'ẫ', 'Ậ' => 'áº', 'Ắ' => 'ắ', 'Ằ' => 'ằ', 'Ẳ' => 'ẳ', 'Ẵ' => 'ẵ', 'Ặ' => 'ặ', 'Ẹ' => 'ẹ', 'Ẻ' => 'ẻ', 'Ẽ' => 'ẽ', 'Ế' => 'ế', 'Ề' => 'á»', 'Ể' => 'ể', 'Ễ' => 'á»…', 'Ệ' => 'ệ', 'Ỉ' => 'ỉ', 'Ị' => 'ị', 'Ọ' => 'á»', 'Ỏ' => 'á»', 'á»' => 'ố', 'á»’' => 'ồ', 'á»”' => 'ổ', 'á»–' => 'á»—', 'Ộ' => 'á»™', 'Ớ' => 'á»›', 'Ờ' => 'á»', 'Ở' => 'ở', 'á» ' => 'ỡ', 'Ợ' => 'ợ', 'Ụ' => 'ụ', 'Ủ' => 'á»§', 'Ứ' => 'ứ', 'Ừ' => 'ừ', 'Ử' => 'á»', 'á»®' => 'ữ', 'á»°' => 'á»±', 'Ỳ' => 'ỳ', 'á»´' => 'ỵ', 'á»¶' => 'á»·', 'Ỹ' => 'ỹ', 'Ỻ' => 'á»»', 'Ỽ' => 'ỽ', 'Ỿ' => 'ỿ', 'Ἀ' => 'á¼€', 'Ἁ' => 'á¼', 'Ἂ' => 'ἂ', 'Ἃ' => 'ἃ', 'Ἄ' => 'ἄ', 'á¼' => 'á¼…', 'Ἆ' => 'ἆ', 'á¼' => 'ἇ', 'Ἐ' => 'á¼', 'á¼™' => 'ἑ', 'Ἒ' => 'á¼’', 'á¼›' => 'ἓ', 'Ἔ' => 'á¼”', 'á¼' => 'ἕ', 'Ἠ' => 'á¼ ', 'Ἡ' => 'ἡ', 'Ἢ' => 'á¼¢', 'Ἣ' => 'á¼£', 'Ἤ' => 'ἤ', 'á¼' => 'á¼¥', 'á¼®' => 'ἦ', 'Ἧ' => 'á¼§', 'Ἰ' => 'á¼°', 'á¼¹' => 'á¼±', 'Ἲ' => 'á¼²', 'á¼»' => 'á¼³', 'á¼¼' => 'á¼´', 'á¼½' => 'á¼µ', 'á¼¾' => 'á¼¶', 'Ἷ' => 'á¼·', 'Ὀ' => 'á½€', 'Ὁ' => 'á½', 'Ὂ' => 'ὂ', 'Ὃ' => 'ὃ', 'Ὄ' => 'ὄ', 'á½' => 'á½…', 'á½™' => 'ὑ', 'á½›' => 'ὓ', 'á½' => 'ὕ', 'Ὗ' => 'á½—', 'Ὠ' => 'á½ ', 'Ὡ' => 'ὡ', 'Ὢ' => 'á½¢', 'Ὣ' => 'á½£', 'Ὤ' => 'ὤ', 'á½' => 'á½¥', 'á½®' => 'ὦ', 'Ὧ' => 'á½§', 'ᾈ' => 'á¾€', 'ᾉ' => 'á¾', 'ᾊ' => 'ᾂ', 'ᾋ' => 'ᾃ', 'ᾌ' => 'ᾄ', 'á¾' => 'á¾…', 'ᾎ' => 'ᾆ', 'á¾' => 'ᾇ', 'ᾘ' => 'á¾', 'á¾™' => 'ᾑ', 'ᾚ' => 'á¾’', 'á¾›' => 'ᾓ', 'ᾜ' => 'á¾”', 'á¾' => 'ᾕ', 'ᾞ' => 'á¾–', 'ᾟ' => 'á¾—', 'ᾨ' => 'á¾ ', 'ᾩ' => 'ᾡ', 'ᾪ' => 'á¾¢', 'ᾫ' => 'á¾£', 'ᾬ' => 'ᾤ', 'á¾' => 'á¾¥', 'á¾®' => 'ᾦ', 'ᾯ' => 'á¾§', 'Ᾰ' => 'á¾°', 'á¾¹' => 'á¾±', 'Ὰ' => 'á½°', 'á¾»' => 'á½±', 'á¾¼' => 'á¾³', 'Ὲ' => 'á½²', 'Έ' => 'á½³', 'Ὴ' => 'á½´', 'á¿‹' => 'á½µ', 'ῌ' => 'ῃ', 'Ῐ' => 'á¿', 'á¿™' => 'á¿‘', 'Ὶ' => 'á½¶', 'á¿›' => 'á½·', 'Ῠ' => 'á¿ ', 'á¿©' => 'á¿¡', 'Ὺ' => 'ὺ', 'á¿«' => 'á½»', 'Ῥ' => 'á¿¥', 'Ὸ' => 'ὸ', 'Ό' => 'á½¹', 'Ὼ' => 'á½¼', 'á¿»' => 'á½½', 'ῼ' => 'ῳ', 'Ω' => 'ω', 'K' => 'k', 'â„«' => 'Ã¥', 'Ⅎ' => 'â…Ž', 'â… ' => 'â…°', 'â…¡' => 'â…±', 'â…¢' => 'â…²', 'â…£' => 'â…³', 'â…¤' => 'â…´', 'â…¥' => 'â…µ', 'â…¦' => 'â…¶', 'â…§' => 'â…·', 'â…¨' => 'â…¸', 'â…©' => 'â…¹', 'â…ª' => 'â…º', 'â…«' => 'â…»', 'â…¬' => 'â…¼', 'â…' => 'â…½', 'â…®' => 'â…¾', 'â…¯' => 'â…¿', 'Ↄ' => 'ↄ', 'â’¶' => 'â“', 'â’·' => 'â“‘', 'â’¸' => 'â“’', 'â’¹' => 'â““', 'â’º' => 'â“”', 'â’»' => 'â“•', 'â’¼' => 'â“–', 'â’½' => 'â“—', 'â’¾' => 'ⓘ', 'â’¿' => 'â“™', 'â“€' => 'ⓚ', 'â“' => 'â“›', 'â“‚' => 'ⓜ', 'Ⓝ' => 'â“', 'â“„' => 'ⓞ', 'â“…' => 'ⓟ', 'Ⓠ' => 'â“ ', 'Ⓡ' => 'â“¡', 'Ⓢ' => 'â“¢', 'Ⓣ' => 'â“£', 'Ⓤ' => 'ⓤ', 'â“‹' => 'â“¥', 'Ⓦ' => 'ⓦ', 'â“' => 'â“§', 'Ⓨ' => 'ⓨ', 'â“' => 'â“©', 'â°€' => 'â°°', 'â°' => 'â°±', 'â°‚' => 'â°²', 'â°ƒ' => 'â°³', 'â°„' => 'â°´', 'â°…' => 'â°µ', 'â°†' => 'â°¶', 'â°‡' => 'â°·', 'â°ˆ' => 'â°¸', 'â°‰' => 'â°¹', 'â°Š' => 'â°º', 'â°‹' => 'â°»', 'â°Œ' => 'â°¼', 'â°' => 'â°½', 'â°Ž' => 'â°¾', 'â°' => 'â°¿', 'â°' => 'â±€', 'â°‘' => 'â±', 'â°’' => 'ⱂ', 'â°“' => 'ⱃ', 'â°”' => 'ⱄ', 'â°•' => 'â±…', 'â°–' => 'ⱆ', 'â°—' => 'ⱇ', 'â°˜' => 'ⱈ', 'â°™' => 'ⱉ', 'â°š' => 'ⱊ', 'â°›' => 'ⱋ', 'â°œ' => 'ⱌ', 'â°' => 'â±', 'â°ž' => 'ⱎ', 'â°Ÿ' => 'â±', 'â° ' => 'â±', 'â°¡' => 'ⱑ', 'â°¢' => 'â±’', 'â°£' => 'ⱓ', 'â°¤' => 'â±”', 'â°¥' => 'ⱕ', 'â°¦' => 'â±–', 'â°§' => 'â±—', 'â°¨' => 'ⱘ', 'â°©' => 'â±™', 'â°ª' => 'ⱚ', 'â°«' => 'â±›', 'â°¬' => 'ⱜ', 'â°' => 'â±', 'â°®' => 'ⱞ', 'â± ' => 'ⱡ', 'â±¢' => 'É«', 'â±£' => 'áµ½', 'Ɽ' => 'ɽ', 'â±§' => 'ⱨ', 'Ⱪ' => 'ⱪ', 'Ⱬ' => 'ⱬ', 'â±' => 'É‘', 'â±®' => 'ɱ', 'Ɐ' => 'É', 'â±°' => 'É’', 'â±²' => 'â±³', 'â±µ' => 'â±¶', 'â±¾' => 'È¿', 'Ɀ' => 'É€', 'â²€' => 'â²', 'Ⲃ' => 'ⲃ', 'Ⲅ' => 'â²…', 'Ⲇ' => 'ⲇ', 'Ⲉ' => 'ⲉ', 'Ⲋ' => 'ⲋ', 'Ⲍ' => 'â²', 'Ⲏ' => 'â²', 'â²' => 'ⲑ', 'â²’' => 'ⲓ', 'â²”' => 'ⲕ', 'â²–' => 'â²—', 'Ⲙ' => 'â²™', 'Ⲛ' => 'â²›', 'Ⲝ' => 'â²', 'Ⲟ' => 'ⲟ', 'â² ' => 'ⲡ', 'â²¢' => 'â²£', 'Ⲥ' => 'â²¥', 'Ⲧ' => 'â²§', 'Ⲩ' => 'ⲩ', 'Ⲫ' => 'ⲫ', 'Ⲭ' => 'â²', 'â²®' => 'ⲯ', 'â²°' => 'â²±', 'â²²' => 'â²³', 'â²´' => 'â²µ', 'â²¶' => 'â²·', 'Ⲹ' => 'â²¹', 'Ⲻ' => 'â²»', 'â²¼' => 'â²½', 'â²¾' => 'ⲿ', 'â³€' => 'â³', 'Ⳃ' => 'ⳃ', 'Ⳅ' => 'â³…', 'Ⳇ' => 'ⳇ', 'Ⳉ' => 'ⳉ', 'Ⳋ' => 'ⳋ', 'Ⳍ' => 'â³', 'Ⳏ' => 'â³', 'â³' => 'ⳑ', 'â³’' => 'ⳓ', 'â³”' => 'ⳕ', 'â³–' => 'â³—', 'Ⳙ' => 'â³™', 'Ⳛ' => 'â³›', 'Ⳝ' => 'â³', 'Ⳟ' => 'ⳟ', 'â³ ' => 'ⳡ', 'â³¢' => 'â³£', 'Ⳬ' => 'ⳬ', 'â³' => 'â³®', 'â³²' => 'â³³', 'Ꙁ' => 'ê™', 'Ꙃ' => 'ꙃ', 'Ꙅ' => 'ê™…', 'Ꙇ' => 'ꙇ', 'Ꙉ' => 'ꙉ', 'Ꙋ' => 'ꙋ', 'Ꙍ' => 'ê™', 'Ꙏ' => 'ê™', 'ê™' => 'ꙑ', 'ê™’' => 'ꙓ', 'ê™”' => 'ꙕ', 'ê™–' => 'ê™—', 'Ꙙ' => 'ê™™', 'Ꙛ' => 'ê™›', 'Ꙝ' => 'ê™', 'Ꙟ' => 'ꙟ', 'ê™ ' => 'ꙡ', 'Ꙣ' => 'ꙣ', 'Ꙥ' => 'ꙥ', 'Ꙧ' => 'ê™§', 'Ꙩ' => 'ꙩ', 'Ꙫ' => 'ꙫ', 'Ꙭ' => 'ê™', 'Ꚁ' => 'êš', 'êš‚' => 'ꚃ', 'êš„' => 'êš…', 'Ꚇ' => 'ꚇ', 'Ꚉ' => 'ꚉ', 'Ꚋ' => 'êš‹', 'Ꚍ' => 'êš', 'Ꚏ' => 'êš', 'êš' => 'êš‘', 'êš’' => 'êš“', 'êš”' => 'êš•', 'êš–' => 'êš—', 'Ꚙ' => 'êš™', 'êšš' => 'êš›', 'Ꜣ' => 'ꜣ', 'Ꜥ' => 'ꜥ', 'Ꜧ' => 'ꜧ', 'Ꜩ' => 'ꜩ', 'Ꜫ' => 'ꜫ', 'Ꜭ' => 'êœ', 'Ꜯ' => 'ꜯ', 'Ꜳ' => 'ꜳ', 'Ꜵ' => 'ꜵ', 'Ꜷ' => 'ꜷ', 'Ꜹ' => 'ꜹ', 'Ꜻ' => 'ꜻ', 'Ꜽ' => 'ꜽ', 'Ꜿ' => 'ꜿ', 'ê€' => 'ê', 'ê‚' => 'êƒ', 'ê„' => 'ê…', 'ê†' => 'ê‡', 'êˆ' => 'ê‰', 'êŠ' => 'ê‹', 'êŒ' => 'ê', 'êŽ' => 'ê', 'ê' => 'ê‘', 'ê’' => 'ê“', 'ê”' => 'ê•', 'ê–' => 'ê—', 'ê˜' => 'ê™', 'êš' => 'ê›', 'êœ' => 'ê', 'êž' => 'êŸ', 'ê ' => 'ê¡', 'ê¢' => 'ê£', 'ê¤' => 'ê¥', 'ê¦' => 'ê§', 'ê¨' => 'ê©', 'êª' => 'ê«', 'ê¬' => 'ê', 'ê®' => 'ê¯', 'ê¹' => 'êº', 'ê»' => 'ê¼', 'ê½' => 'áµ¹', 'ê¾' => 'ê¿', 'Ꞁ' => 'êž', 'êž‚' => 'ꞃ', 'êž„' => 'êž…', 'Ꞇ' => 'ꞇ', 'êž‹' => 'ꞌ', 'êž' => 'É¥', 'êž' => 'êž‘', 'êž’' => 'êž“', 'êž–' => 'êž—', 'Ꞙ' => 'êž™', 'êžš' => 'êž›', 'êžœ' => 'êž', 'êžž' => 'ꞟ', 'êž ' => 'êž¡', 'Ꞣ' => 'ꞣ', 'Ꞥ' => 'ꞥ', 'Ꞧ' => 'êž§', 'Ꞩ' => 'êž©', 'Ɦ' => 'ɦ', 'êž«' => 'Éœ', 'Ɡ' => 'É¡', 'êž' => 'ɬ', 'êž®' => 'ɪ', 'êž°' => 'Êž', 'êž±' => 'ʇ', 'êž²' => 'Ê', 'êž³' => 'ê“', 'êž´' => 'êžµ', 'êž¶' => 'êž·', 'Ꞹ' => 'êž¹', 'Ꞻ' => 'êž»', 'êž¼' => 'êž½', 'êž¾' => 'êž¿', 'Ꟃ' => 'ꟃ', 'Ꞔ' => 'êž”', 'Ʂ' => 'Ê‚', 'Ᶎ' => 'á¶Ž', 'Ꟈ' => 'ꟈ', 'Ꟊ' => 'ꟊ', 'Ꟶ' => 'ꟶ', 'A' => 'ï½', 'ï¼¢' => 'b', 'ï¼£' => 'c', 'D' => 'd', 'ï¼¥' => 'ï½…', 'F' => 'f', 'ï¼§' => 'g', 'H' => 'h', 'I' => 'i', 'J' => 'j', 'K' => 'k', 'L' => 'l', 'ï¼' => 'ï½', 'ï¼®' => 'n', 'O' => 'ï½', 'ï¼°' => 'ï½', 'ï¼±' => 'q', 'ï¼²' => 'ï½’', 'ï¼³' => 's', 'ï¼´' => 'ï½”', 'ï¼µ' => 'u', 'ï¼¶' => 'ï½–', 'ï¼·' => 'ï½—', 'X' => 'x', 'ï¼¹' => 'ï½™', 'Z' => 'z', 'ð€' => 'ð¨', 'ð' => 'ð©', 'ð‚' => 'ðª', 'ðƒ' => 'ð«', 'ð„' => 'ð¬', 'ð…' => 'ð', 'ð†' => 'ð®', 'ð‡' => 'ð¯', 'ðˆ' => 'ð°', 'ð‰' => 'ð±', 'ðŠ' => 'ð²', 'ð‹' => 'ð³', 'ðŒ' => 'ð´', 'ð' => 'ðµ', 'ðŽ' => 'ð¶', 'ð' => 'ð·', 'ð' => 'ð¸', 'ð‘' => 'ð¹', 'ð’' => 'ðº', 'ð“' => 'ð»', 'ð”' => 'ð¼', 'ð•' => 'ð½', 'ð–' => 'ð¾', 'ð—' => 'ð¿', 'ð˜' => 'ð‘€', 'ð™' => 'ð‘', 'ðš' => 'ð‘‚', 'ð›' => 'ð‘ƒ', 'ðœ' => 'ð‘„', 'ð' => 'ð‘…', 'ðž' => 'ð‘†', 'ðŸ' => 'ð‘‡', 'ð ' => 'ð‘ˆ', 'ð¡' => 'ð‘‰', 'ð¢' => 'ð‘Š', 'ð£' => 'ð‘‹', 'ð¤' => 'ð‘Œ', 'ð¥' => 'ð‘', 'ð¦' => 'ð‘Ž', 'ð§' => 'ð‘', 'ð’°' => 'ð“˜', 'ð’±' => 'ð“™', 'ð’²' => 'ð“š', 'ð’³' => 'ð“›', 'ð’´' => 'ð“œ', 'ð’µ' => 'ð“', 'ð’¶' => 'ð“ž', 'ð’·' => 'ð“Ÿ', 'ð’¸' => 'ð“ ', 'ð’¹' => 'ð“¡', 'ð’º' => 'ð“¢', 'ð’»' => 'ð“£', 'ð’¼' => 'ð“¤', 'ð’½' => 'ð“¥', 'ð’¾' => 'ð“¦', 'ð’¿' => 'ð“§', 'ð“€' => 'ð“¨', 'ð“' => 'ð“©', 'ð“‚' => 'ð“ª', 'ð“ƒ' => 'ð“«', 'ð“„' => 'ð“¬', 'ð“…' => 'ð“', 'ð“†' => 'ð“®', 'ð“‡' => 'ð“¯', 'ð“ˆ' => 'ð“°', 'ð“‰' => 'ð“±', 'ð“Š' => 'ð“²', 'ð“‹' => 'ð“³', 'ð“Œ' => 'ð“´', 'ð“' => 'ð“µ', 'ð“Ž' => 'ð“¶', 'ð“' => 'ð“·', 'ð“' => 'ð“¸', 'ð“‘' => 'ð“¹', 'ð“’' => 'ð“º', 'ð““' => 'ð“»', 'ð²€' => 'ð³€', 'ð²' => 'ð³', 'ð²‚' => 'ð³‚', 'ð²ƒ' => 'ð³ƒ', 'ð²„' => 'ð³„', 'ð²…' => 'ð³…', 'ð²†' => 'ð³†', 'ð²‡' => 'ð³‡', 'ð²ˆ' => 'ð³ˆ', 'ð²‰' => 'ð³‰', 'ð²Š' => 'ð³Š', 'ð²‹' => 'ð³‹', 'ð²Œ' => 'ð³Œ', 'ð²' => 'ð³', 'ð²Ž' => 'ð³Ž', 'ð²' => 'ð³', 'ð²' => 'ð³', 'ð²‘' => 'ð³‘', 'ð²’' => 'ð³’', 'ð²“' => 'ð³“', 'ð²”' => 'ð³”', 'ð²•' => 'ð³•', 'ð²–' => 'ð³–', 'ð²—' => 'ð³—', 'ð²˜' => 'ð³˜', 'ð²™' => 'ð³™', 'ð²š' => 'ð³š', 'ð²›' => 'ð³›', 'ð²œ' => 'ð³œ', 'ð²' => 'ð³', 'ð²ž' => 'ð³ž', 'ð²Ÿ' => 'ð³Ÿ', 'ð² ' => 'ð³ ', 'ð²¡' => 'ð³¡', 'ð²¢' => 'ð³¢', 'ð²£' => 'ð³£', 'ð²¤' => 'ð³¤', 'ð²¥' => 'ð³¥', 'ð²¦' => 'ð³¦', 'ð²§' => 'ð³§', 'ð²¨' => 'ð³¨', 'ð²©' => 'ð³©', 'ð²ª' => 'ð³ª', 'ð²«' => 'ð³«', 'ð²¬' => 'ð³¬', 'ð²' => 'ð³', 'ð²®' => 'ð³®', 'ð²¯' => 'ð³¯', 'ð²°' => 'ð³°', 'ð²±' => 'ð³±', 'ð²²' => 'ð³²', 'ð‘¢ ' => 'ð‘£€', '𑢡' => 'ð‘£', 'ð‘¢¢' => '𑣂', 'ð‘¢£' => '𑣃', '𑢤' => '𑣄', 'ð‘¢¥' => 'ð‘£…', '𑢦' => '𑣆', 'ð‘¢§' => '𑣇', '𑢨' => '𑣈', '𑢩' => '𑣉', '𑢪' => '𑣊', '𑢫' => '𑣋', '𑢬' => '𑣌', 'ð‘¢' => 'ð‘£', 'ð‘¢®' => '𑣎', '𑢯' => 'ð‘£', 'ð‘¢°' => 'ð‘£', 'ð‘¢±' => '𑣑', 'ð‘¢²' => 'ð‘£’', 'ð‘¢³' => '𑣓', 'ð‘¢´' => 'ð‘£”', 'ð‘¢µ' => '𑣕', 'ð‘¢¶' => 'ð‘£–', 'ð‘¢·' => 'ð‘£—', '𑢸' => '𑣘', 'ð‘¢¹' => 'ð‘£™', '𑢺' => '𑣚', 'ð‘¢»' => 'ð‘£›', 'ð‘¢¼' => '𑣜', 'ð‘¢½' => 'ð‘£', 'ð‘¢¾' => '𑣞', '𑢿' => '𑣟', 'ð–¹€' => 'ð–¹ ', 'ð–¹' => '𖹡', '𖹂' => 'ð–¹¢', '𖹃' => 'ð–¹£', '𖹄' => '𖹤', 'ð–¹…' => 'ð–¹¥', '𖹆' => '𖹦', '𖹇' => 'ð–¹§', '𖹈' => '𖹨', '𖹉' => '𖹩', '𖹊' => '𖹪', '𖹋' => '𖹫', '𖹌' => '𖹬', 'ð–¹' => 'ð–¹', '𖹎' => 'ð–¹®', 'ð–¹' => '𖹯', 'ð–¹' => 'ð–¹°', '𖹑' => 'ð–¹±', 'ð–¹’' => 'ð–¹²', '𖹓' => 'ð–¹³', 'ð–¹”' => 'ð–¹´', '𖹕' => 'ð–¹µ', 'ð–¹–' => 'ð–¹¶', 'ð–¹—' => 'ð–¹·', '𖹘' => '𖹸', 'ð–¹™' => 'ð–¹¹', '𖹚' => '𖹺', 'ð–¹›' => 'ð–¹»', '𖹜' => 'ð–¹¼', 'ð–¹' => 'ð–¹½', '𖹞' => 'ð–¹¾', '𖹟' => '𖹿', '𞤀' => '𞤢', 'ðž¤' => '𞤣', '𞤂' => '𞤤', '𞤃' => '𞤥', '𞤄' => '𞤦', '𞤅' => '𞤧', '𞤆' => '𞤨', '𞤇' => '𞤩', '𞤈' => '𞤪', '𞤉' => '𞤫', '𞤊' => '𞤬', '𞤋' => 'ðž¤', '𞤌' => '𞤮', 'ðž¤' => '𞤯', '𞤎' => '𞤰', 'ðž¤' => '𞤱', 'ðž¤' => '𞤲', '𞤑' => '𞤳', '𞤒' => '𞤴', '𞤓' => '𞤵', '𞤔' => '𞤶', '𞤕' => '𞤷', '𞤖' => '𞤸', '𞤗' => '𞤹', '𞤘' => '𞤺', '𞤙' => '𞤻', '𞤚' => '𞤼', '𞤛' => '𞤽', '𞤜' => '𞤾', 'ðž¤' => '𞤿', '𞤞' => '𞥀', '𞤟' => 'ðž¥', '𞤠' => '𞥂', '𞤡' => '𞥃');
diff --git a/vendor_prefixed/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php b/vendor_prefixed/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php
new file mode 100644
index 00000000..f69f5838
--- /dev/null
+++ b/vendor_prefixed/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php
@@ -0,0 +1,6 @@
+ 'A', 'b' => 'B', 'c' => 'C', 'd' => 'D', 'e' => 'E', 'f' => 'F', 'g' => 'G', 'h' => 'H', 'i' => 'I', 'j' => 'J', 'k' => 'K', 'l' => 'L', 'm' => 'M', 'n' => 'N', 'o' => 'O', 'p' => 'P', 'q' => 'Q', 'r' => 'R', 's' => 'S', 't' => 'T', 'u' => 'U', 'v' => 'V', 'w' => 'W', 'x' => 'X', 'y' => 'Y', 'z' => 'Z', 'µ' => 'Μ', 'à ' => 'À', 'á' => 'Ã', 'â' => 'Â', 'ã' => 'Ã', 'ä' => 'Ä', 'Ã¥' => 'Ã…', 'æ' => 'Æ', 'ç' => 'Ç', 'è' => 'È', 'é' => 'É', 'ê' => 'Ê', 'ë' => 'Ë', 'ì' => 'ÃŒ', 'Ã' => 'Ã', 'î' => 'ÃŽ', 'ï' => 'Ã', 'ð' => 'Ã', 'ñ' => 'Ñ', 'ò' => 'Ã’', 'ó' => 'Ó', 'ô' => 'Ô', 'õ' => 'Õ', 'ö' => 'Ö', 'ø' => 'Ø', 'ù' => 'Ù', 'ú' => 'Ú', 'û' => 'Û', 'ü' => 'Ü', 'ý' => 'Ã', 'þ' => 'Þ', 'ÿ' => 'Ÿ', 'Ä' => 'Ä€', 'ă' => 'Ä‚', 'Ä…' => 'Ä„', 'ć' => 'Ć', 'ĉ' => 'Ĉ', 'Ä‹' => 'ÄŠ', 'Ä' => 'ÄŒ', 'Ä' => 'ÄŽ', 'Ä‘' => 'Ä', 'Ä“' => 'Ä’', 'Ä•' => 'Ä”', 'Ä—' => 'Ä–', 'Ä™' => 'Ę', 'Ä›' => 'Äš', 'Ä' => 'Äœ', 'ÄŸ' => 'Äž', 'Ä¡' => 'Ä ', 'Ä£' => 'Ä¢', 'Ä¥' => 'Ĥ', 'ħ' => 'Ħ', 'Ä©' => 'Ĩ', 'Ä«' => 'Ī', 'Ä' => 'Ĭ', 'į' => 'Ä®', 'ı' => 'I', 'ij' => 'IJ', 'ĵ' => 'Ä´', 'Ä·' => 'Ķ', 'ĺ' => 'Ĺ', 'ļ' => 'Ä»', 'ľ' => 'Ľ', 'Å€' => 'Ä¿', 'Å‚' => 'Å', 'Å„' => 'Ń', 'ņ' => 'Å…', 'ň' => 'Ň', 'Å‹' => 'ÅŠ', 'Å' => 'ÅŒ', 'Å' => 'ÅŽ', 'Å‘' => 'Å', 'Å“' => 'Å’', 'Å•' => 'Å”', 'Å—' => 'Å–', 'Å™' => 'Ř', 'Å›' => 'Åš', 'Å' => 'Åœ', 'ÅŸ' => 'Åž', 'Å¡' => 'Å ', 'Å£' => 'Å¢', 'Å¥' => 'Ť', 'ŧ' => 'Ŧ', 'Å©' => 'Ũ', 'Å«' => 'Ū', 'Å' => 'Ŭ', 'ů' => 'Å®', 'ű' => 'Ű', 'ų' => 'Ų', 'ŵ' => 'Å´', 'Å·' => 'Ŷ', 'ź' => 'Ź', 'ż' => 'Å»', 'ž' => 'Ž', 'Å¿' => 'S', 'Æ€' => 'Ƀ', 'ƃ' => 'Æ‚', 'Æ…' => 'Æ„', 'ƈ' => 'Ƈ', 'ÆŒ' => 'Æ‹', 'Æ’' => 'Æ‘', 'Æ•' => 'Ƕ', 'Æ™' => 'Ƙ', 'Æš' => 'Ƚ', 'Æž' => 'È ', 'Æ¡' => 'Æ ', 'Æ£' => 'Æ¢', 'Æ¥' => 'Ƥ', 'ƨ' => 'Ƨ', 'Æ' => 'Ƭ', 'ư' => 'Ư', 'Æ´' => 'Ƴ', 'ƶ' => 'Ƶ', 'ƹ' => 'Ƹ', 'ƽ' => 'Ƽ', 'Æ¿' => 'Ç·', 'Ç…' => 'Ç„', 'dž' => 'Ç„', 'Lj' => 'LJ', 'lj' => 'LJ', 'Ç‹' => 'ÇŠ', 'ÇŒ' => 'ÇŠ', 'ÇŽ' => 'Ç', 'Ç' => 'Ç', 'Ç’' => 'Ç‘', 'Ç”' => 'Ç“', 'Ç–' => 'Ç•', 'ǘ' => 'Ç—', 'Çš' => 'Ç™', 'Çœ' => 'Ç›', 'Ç' => 'ÆŽ', 'ÇŸ' => 'Çž', 'Ç¡' => 'Ç ', 'Ç£' => 'Ç¢', 'Ç¥' => 'Ǥ', 'ǧ' => 'Ǧ', 'Ç©' => 'Ǩ', 'Ç«' => 'Ǫ', 'Ç' => 'Ǭ', 'ǯ' => 'Ç®', 'Dz' => 'DZ', 'dz' => 'DZ', 'ǵ' => 'Ç´', 'ǹ' => 'Ǹ', 'Ç»' => 'Ǻ', 'ǽ' => 'Ǽ', 'Ç¿' => 'Ǿ', 'È' => 'È€', 'ȃ' => 'È‚', 'È…' => 'È„', 'ȇ' => 'Ȇ', 'ȉ' => 'Ȉ', 'È‹' => 'ÈŠ', 'È' => 'ÈŒ', 'È' => 'ÈŽ', 'È‘' => 'È', 'È“' => 'È’', 'È•' => 'È”', 'È—' => 'È–', 'È™' => 'Ș', 'È›' => 'Èš', 'È' => 'Èœ', 'ÈŸ' => 'Èž', 'È£' => 'È¢', 'È¥' => 'Ȥ', 'ȧ' => 'Ȧ', 'È©' => 'Ȩ', 'È«' => 'Ȫ', 'È' => 'Ȭ', 'ȯ' => 'È®', 'ȱ' => 'Ȱ', 'ȳ' => 'Ȳ', 'ȼ' => 'È»', 'È¿' => 'â±¾', 'É€' => 'Ɀ', 'É‚' => 'É', 'ɇ' => 'Ɇ', 'ɉ' => 'Ɉ', 'É‹' => 'ÉŠ', 'É' => 'ÉŒ', 'É' => 'ÉŽ', 'É' => 'Ɐ', 'É‘' => 'â±', 'É’' => 'â±°', 'É“' => 'Æ', 'É”' => 'Ɔ', 'É–' => 'Ɖ', 'É—' => 'ÆŠ', 'É™' => 'Æ', 'É›' => 'Æ', 'Éœ' => 'êž«', 'É ' => 'Æ“', 'É¡' => 'Ɡ', 'É£' => 'Æ”', 'É¥' => 'êž', 'ɦ' => 'Ɦ', 'ɨ' => 'Æ—', 'É©' => 'Æ–', 'ɪ' => 'êž®', 'É«' => 'â±¢', 'ɬ' => 'êž', 'ɯ' => 'Æœ', 'ɱ' => 'â±®', 'ɲ' => 'Æ', 'ɵ' => 'ÆŸ', 'ɽ' => 'Ɽ', 'Ê€' => 'Ʀ', 'Ê‚' => 'Ʂ', 'ʃ' => 'Æ©', 'ʇ' => 'êž±', 'ʈ' => 'Æ®', 'ʉ' => 'É„', 'ÊŠ' => 'Ʊ', 'Ê‹' => 'Ʋ', 'ÊŒ' => 'É…', 'Ê’' => 'Æ·', 'Ê' => 'êž²', 'Êž' => 'êž°', 'Í…' => 'Ι', 'ͱ' => 'Ͱ', 'ͳ' => 'Ͳ', 'Í·' => 'Ͷ', 'Í»' => 'Ͻ', 'ͼ' => 'Ͼ', 'ͽ' => 'Ï¿', 'ά' => 'Ά', 'Î' => 'Έ', 'ή' => 'Ή', 'ί' => 'Ί', 'α' => 'Α', 'β' => 'Î’', 'γ' => 'Γ', 'δ' => 'Δ', 'ε' => 'Ε', 'ζ' => 'Ζ', 'η' => 'Η', 'θ' => 'Θ', 'ι' => 'Ι', 'κ' => 'Κ', 'λ' => 'Λ', 'μ' => 'Μ', 'ν' => 'Î', 'ξ' => 'Ξ', 'ο' => 'Ο', 'Ï€' => 'Î ', 'Ï' => 'Ρ', 'Ï‚' => 'Σ', 'σ' => 'Σ', 'Ï„' => 'Τ', 'Ï…' => 'Î¥', 'φ' => 'Φ', 'χ' => 'Χ', 'ψ' => 'Ψ', 'ω' => 'Ω', 'ÏŠ' => 'Ϊ', 'Ï‹' => 'Ϋ', 'ÏŒ' => 'ÎŒ', 'Ï' => 'ÎŽ', 'ÏŽ' => 'Î', 'Ï' => 'Î’', 'Ï‘' => 'Θ', 'Ï•' => 'Φ', 'Ï–' => 'Î ', 'Ï—' => 'Ï', 'Ï™' => 'Ϙ', 'Ï›' => 'Ïš', 'Ï' => 'Ïœ', 'ÏŸ' => 'Ïž', 'Ï¡' => 'Ï ', 'Ï£' => 'Ï¢', 'Ï¥' => 'Ϥ', 'ϧ' => 'Ϧ', 'Ï©' => 'Ϩ', 'Ï«' => 'Ϫ', 'Ï' => 'Ϭ', 'ϯ' => 'Ï®', 'ϰ' => 'Κ', 'ϱ' => 'Ρ', 'ϲ' => 'Ϲ', 'ϳ' => 'Í¿', 'ϵ' => 'Ε', 'ϸ' => 'Ï·', 'Ï»' => 'Ϻ', 'а' => 'Ð', 'б' => 'Б', 'в' => 'Ð’', 'г' => 'Г', 'д' => 'Д', 'е' => 'Е', 'ж' => 'Ж', 'з' => 'З', 'и' => 'И', 'й' => 'Й', 'к' => 'К', 'л' => 'Л', 'м' => 'М', 'н' => 'Ð', 'о' => 'О', 'п' => 'П', 'Ñ€' => 'Ð ', 'Ñ' => 'С', 'Ñ‚' => 'Т', 'у' => 'У', 'Ñ„' => 'Ф', 'Ñ…' => 'Ð¥', 'ц' => 'Ц', 'ч' => 'Ч', 'ш' => 'Ш', 'щ' => 'Щ', 'ÑŠ' => 'Ъ', 'Ñ‹' => 'Ы', 'ÑŒ' => 'Ь', 'Ñ' => 'Ð', 'ÑŽ' => 'Ю', 'Ñ' => 'Я', 'Ñ' => 'Ѐ', 'Ñ‘' => 'Ð', 'Ñ’' => 'Ђ', 'Ñ“' => 'Ѓ', 'Ñ”' => 'Є', 'Ñ•' => 'Ð…', 'Ñ–' => 'І', 'Ñ—' => 'Ї', 'ј' => 'Ј', 'Ñ™' => 'Љ', 'Ñš' => 'Њ', 'Ñ›' => 'Ћ', 'Ñœ' => 'ÐŒ', 'Ñ' => 'Ð', 'Ñž' => 'ÐŽ', 'ÑŸ' => 'Ð', 'Ñ¡' => 'Ñ ', 'Ñ£' => 'Ñ¢', 'Ñ¥' => 'Ѥ', 'ѧ' => 'Ѧ', 'Ñ©' => 'Ѩ', 'Ñ«' => 'Ѫ', 'Ñ' => 'Ѭ', 'ѯ' => 'Ñ®', 'ѱ' => 'Ѱ', 'ѳ' => 'Ѳ', 'ѵ' => 'Ñ´', 'Ñ·' => 'Ѷ', 'ѹ' => 'Ѹ', 'Ñ»' => 'Ѻ', 'ѽ' => 'Ѽ', 'Ñ¿' => 'Ѿ', 'Ò' => 'Ò€', 'Ò‹' => 'ÒŠ', 'Ò' => 'ÒŒ', 'Ò' => 'ÒŽ', 'Ò‘' => 'Ò', 'Ò“' => 'Ò’', 'Ò•' => 'Ò”', 'Ò—' => 'Ò–', 'Ò™' => 'Ò˜', 'Ò›' => 'Òš', 'Ò' => 'Òœ', 'ÒŸ' => 'Òž', 'Ò¡' => 'Ò ', 'Ò£' => 'Ò¢', 'Ò¥' => 'Ò¤', 'Ò§' => 'Ò¦', 'Ò©' => 'Ò¨', 'Ò«' => 'Òª', 'Ò' => 'Ò¬', 'Ò¯' => 'Ò®', 'Ò±' => 'Ò°', 'Ò³' => 'Ò²', 'Òµ' => 'Ò´', 'Ò·' => 'Ò¶', 'Ò¹' => 'Ò¸', 'Ò»' => 'Òº', 'Ò½' => 'Ò¼', 'Ò¿' => 'Ò¾', 'Ó‚' => 'Ó', 'Ó„' => 'Óƒ', 'Ó†' => 'Ó…', 'Óˆ' => 'Ó‡', 'ÓŠ' => 'Ó‰', 'ÓŒ' => 'Ó‹', 'ÓŽ' => 'Ó', 'Ó' => 'Ó€', 'Ó‘' => 'Ó', 'Ó“' => 'Ó’', 'Ó•' => 'Ó”', 'Ó—' => 'Ó–', 'Ó™' => 'Ó˜', 'Ó›' => 'Óš', 'Ó' => 'Óœ', 'ÓŸ' => 'Óž', 'Ó¡' => 'Ó ', 'Ó£' => 'Ó¢', 'Ó¥' => 'Ó¤', 'Ó§' => 'Ó¦', 'Ó©' => 'Ó¨', 'Ó«' => 'Óª', 'Ó' => 'Ó¬', 'Ó¯' => 'Ó®', 'Ó±' => 'Ó°', 'Ó³' => 'Ó²', 'Óµ' => 'Ó´', 'Ó·' => 'Ó¶', 'Ó¹' => 'Ó¸', 'Ó»' => 'Óº', 'Ó½' => 'Ó¼', 'Ó¿' => 'Ó¾', 'Ô' => 'Ô€', 'Ôƒ' => 'Ô‚', 'Ô…' => 'Ô„', 'Ô‡' => 'Ô†', 'Ô‰' => 'Ôˆ', 'Ô‹' => 'ÔŠ', 'Ô' => 'ÔŒ', 'Ô' => 'ÔŽ', 'Ô‘' => 'Ô', 'Ô“' => 'Ô’', 'Ô•' => 'Ô”', 'Ô—' => 'Ô–', 'Ô™' => 'Ô˜', 'Ô›' => 'Ôš', 'Ô' => 'Ôœ', 'ÔŸ' => 'Ôž', 'Ô¡' => 'Ô ', 'Ô£' => 'Ô¢', 'Ô¥' => 'Ô¤', 'Ô§' => 'Ô¦', 'Ô©' => 'Ô¨', 'Ô«' => 'Ôª', 'Ô' => 'Ô¬', 'Ô¯' => 'Ô®', 'Õ¡' => 'Ô±', 'Õ¢' => 'Ô²', 'Õ£' => 'Ô³', 'Õ¤' => 'Ô´', 'Õ¥' => 'Ôµ', 'Õ¦' => 'Ô¶', 'Õ§' => 'Ô·', 'Õ¨' => 'Ô¸', 'Õ©' => 'Ô¹', 'Õª' => 'Ôº', 'Õ«' => 'Ô»', 'Õ¬' => 'Ô¼', 'Õ' => 'Ô½', 'Õ®' => 'Ô¾', 'Õ¯' => 'Ô¿', 'Õ°' => 'Õ€', 'Õ±' => 'Õ', 'Õ²' => 'Õ‚', 'Õ³' => 'Õƒ', 'Õ´' => 'Õ„', 'Õµ' => 'Õ…', 'Õ¶' => 'Õ†', 'Õ·' => 'Õ‡', 'Õ¸' => 'Õˆ', 'Õ¹' => 'Õ‰', 'Õº' => 'ÕŠ', 'Õ»' => 'Õ‹', 'Õ¼' => 'ÕŒ', 'Õ½' => 'Õ', 'Õ¾' => 'ÕŽ', 'Õ¿' => 'Õ', 'Ö€' => 'Õ', 'Ö' => 'Õ‘', 'Ö‚' => 'Õ’', 'Öƒ' => 'Õ“', 'Ö„' => 'Õ”', 'Ö…' => 'Õ•', 'Ö†' => 'Õ–', 'áƒ' => 'á²', 'ბ' => 'Ბ', 'გ' => 'á²’', 'დ' => 'Დ', 'ე' => 'á²”', 'ვ' => 'Ვ', 'ზ' => 'á²–', 'თ' => 'á²—', 'ი' => 'Ი', 'კ' => 'á²™', 'ლ' => 'Ლ', 'მ' => 'á²›', 'ნ' => 'Ნ', 'áƒ' => 'á²', 'პ' => 'Პ', 'ჟ' => 'Ჟ', 'რ' => 'á² ', 'ს' => 'Ს', 'ტ' => 'á²¢', 'უ' => 'á²£', 'ფ' => 'Ფ', 'ქ' => 'á²¥', 'ღ' => 'Ღ', 'ყ' => 'á²§', 'შ' => 'Შ', 'ჩ' => 'Ჩ', 'ც' => 'Ც', 'ძ' => 'Ძ', 'წ' => 'Წ', 'áƒ' => 'á²', 'ხ' => 'á²®', 'ჯ' => 'Ჯ', 'ჰ' => 'á²°', 'ჱ' => 'á²±', 'ჲ' => 'á²²', 'ჳ' => 'á²³', 'ჴ' => 'á²´', 'ჵ' => 'á²µ', 'ჶ' => 'á²¶', 'ჷ' => 'á²·', 'ჸ' => 'Ჸ', 'ჹ' => 'á²¹', 'ჺ' => 'Ჺ', 'ჽ' => 'á²½', 'ჾ' => 'á²¾', 'ჿ' => 'Ჿ', 'á¸' => 'á°', 'á¹' => 'á±', 'áº' => 'á²', 'á»' => 'á³', 'á¼' => 'á´', 'á½' => 'áµ', 'á²€' => 'Ð’', 'á²' => 'Д', 'ᲂ' => 'О', 'ᲃ' => 'С', 'ᲄ' => 'Т', 'á²…' => 'Т', 'ᲆ' => 'Ъ', 'ᲇ' => 'Ñ¢', 'ᲈ' => 'Ꙋ', 'áµ¹' => 'ê½', 'áµ½' => 'â±£', 'á¶Ž' => 'Ᶎ', 'á¸' => 'Ḁ', 'ḃ' => 'Ḃ', 'ḅ' => 'Ḅ', 'ḇ' => 'Ḇ', 'ḉ' => 'Ḉ', 'ḋ' => 'Ḋ', 'á¸' => 'Ḍ', 'á¸' => 'Ḏ', 'ḑ' => 'á¸', 'ḓ' => 'Ḓ', 'ḕ' => 'Ḕ', 'ḗ' => 'Ḗ', 'ḙ' => 'Ḙ', 'ḛ' => 'Ḛ', 'á¸' => 'Ḝ', 'ḟ' => 'Ḟ', 'ḡ' => 'Ḡ', 'ḣ' => 'Ḣ', 'ḥ' => 'Ḥ', 'ḧ' => 'Ḧ', 'ḩ' => 'Ḩ', 'ḫ' => 'Ḫ', 'á¸' => 'Ḭ', 'ḯ' => 'Ḯ', 'ḱ' => 'Ḱ', 'ḳ' => 'Ḳ', 'ḵ' => 'Ḵ', 'ḷ' => 'Ḷ', 'ḹ' => 'Ḹ', 'ḻ' => 'Ḻ', 'ḽ' => 'Ḽ', 'ḿ' => 'Ḿ', 'á¹' => 'á¹€', 'ṃ' => 'Ṃ', 'á¹…' => 'Ṅ', 'ṇ' => 'Ṇ', 'ṉ' => 'Ṉ', 'ṋ' => 'Ṋ', 'á¹' => 'Ṍ', 'á¹' => 'Ṏ', 'ṑ' => 'á¹', 'ṓ' => 'á¹’', 'ṕ' => 'á¹”', 'á¹—' => 'á¹–', 'á¹™' => 'Ṙ', 'á¹›' => 'Ṛ', 'á¹' => 'Ṝ', 'ṟ' => 'Ṟ', 'ṡ' => 'á¹ ', 'á¹£' => 'á¹¢', 'á¹¥' => 'Ṥ', 'á¹§' => 'Ṧ', 'ṩ' => 'Ṩ', 'ṫ' => 'Ṫ', 'á¹' => 'Ṭ', 'ṯ' => 'á¹®', 'á¹±' => 'á¹°', 'á¹³' => 'á¹²', 'á¹µ' => 'á¹´', 'á¹·' => 'á¹¶', 'á¹¹' => 'Ṹ', 'á¹»' => 'Ṻ', 'á¹½' => 'á¹¼', 'ṿ' => 'á¹¾', 'áº' => 'Ẁ', 'ẃ' => 'Ẃ', 'ẅ' => 'Ẅ', 'ẇ' => 'Ẇ', 'ẉ' => 'Ẉ', 'ẋ' => 'Ẋ', 'áº' => 'Ẍ', 'áº' => 'Ẏ', 'ẑ' => 'áº', 'ẓ' => 'Ẓ', 'ẕ' => 'Ẕ', 'ẛ' => 'á¹ ', 'ạ' => 'Ạ', 'ả' => 'Ả', 'ấ' => 'Ấ', 'ầ' => 'Ầ', 'ẩ' => 'Ẩ', 'ẫ' => 'Ẫ', 'áº' => 'Ậ', 'ắ' => 'Ắ', 'ằ' => 'Ằ', 'ẳ' => 'Ẳ', 'ẵ' => 'Ẵ', 'ặ' => 'Ặ', 'ẹ' => 'Ẹ', 'ẻ' => 'Ẻ', 'ẽ' => 'Ẽ', 'ế' => 'Ế', 'á»' => 'Ề', 'ể' => 'Ể', 'á»…' => 'Ễ', 'ệ' => 'Ệ', 'ỉ' => 'Ỉ', 'ị' => 'Ị', 'á»' => 'Ọ', 'á»' => 'Ỏ', 'ố' => 'á»', 'ồ' => 'á»’', 'ổ' => 'á»”', 'á»—' => 'á»–', 'á»™' => 'Ộ', 'á»›' => 'Ớ', 'á»' => 'Ờ', 'ở' => 'Ở', 'ỡ' => 'á» ', 'ợ' => 'Ợ', 'ụ' => 'Ụ', 'á»§' => 'Ủ', 'ứ' => 'Ứ', 'ừ' => 'Ừ', 'á»' => 'Ử', 'ữ' => 'á»®', 'á»±' => 'á»°', 'ỳ' => 'Ỳ', 'ỵ' => 'á»´', 'á»·' => 'á»¶', 'ỹ' => 'Ỹ', 'á»»' => 'Ỻ', 'ỽ' => 'Ỽ', 'ỿ' => 'Ỿ', 'á¼€' => 'Ἀ', 'á¼' => 'Ἁ', 'ἂ' => 'Ἂ', 'ἃ' => 'Ἃ', 'ἄ' => 'Ἄ', 'á¼…' => 'á¼', 'ἆ' => 'Ἆ', 'ἇ' => 'á¼', 'á¼' => 'Ἐ', 'ἑ' => 'á¼™', 'á¼’' => 'Ἒ', 'ἓ' => 'á¼›', 'á¼”' => 'Ἔ', 'ἕ' => 'á¼', 'á¼ ' => 'Ἠ', 'ἡ' => 'Ἡ', 'á¼¢' => 'Ἢ', 'á¼£' => 'Ἣ', 'ἤ' => 'Ἤ', 'á¼¥' => 'á¼', 'ἦ' => 'á¼®', 'á¼§' => 'Ἧ', 'á¼°' => 'Ἰ', 'á¼±' => 'á¼¹', 'á¼²' => 'Ἲ', 'á¼³' => 'á¼»', 'á¼´' => 'á¼¼', 'á¼µ' => 'á¼½', 'á¼¶' => 'á¼¾', 'á¼·' => 'Ἷ', 'á½€' => 'Ὀ', 'á½' => 'Ὁ', 'ὂ' => 'Ὂ', 'ὃ' => 'Ὃ', 'ὄ' => 'Ὄ', 'á½…' => 'á½', 'ὑ' => 'á½™', 'ὓ' => 'á½›', 'ὕ' => 'á½', 'á½—' => 'Ὗ', 'á½ ' => 'Ὠ', 'ὡ' => 'Ὡ', 'á½¢' => 'Ὢ', 'á½£' => 'Ὣ', 'ὤ' => 'Ὤ', 'á½¥' => 'á½', 'ὦ' => 'á½®', 'á½§' => 'Ὧ', 'á½°' => 'Ὰ', 'á½±' => 'á¾»', 'á½²' => 'Ὲ', 'á½³' => 'Έ', 'á½´' => 'Ὴ', 'á½µ' => 'á¿‹', 'á½¶' => 'Ὶ', 'á½·' => 'á¿›', 'ὸ' => 'Ὸ', 'á½¹' => 'Ό', 'ὺ' => 'Ὺ', 'á½»' => 'á¿«', 'á½¼' => 'Ὼ', 'á½½' => 'á¿»', 'á¾€' => 'ᾈ', 'á¾' => 'ᾉ', 'ᾂ' => 'ᾊ', 'ᾃ' => 'ᾋ', 'ᾄ' => 'ᾌ', 'á¾…' => 'á¾', 'ᾆ' => 'ᾎ', 'ᾇ' => 'á¾', 'á¾' => 'ᾘ', 'ᾑ' => 'á¾™', 'á¾’' => 'ᾚ', 'ᾓ' => 'á¾›', 'á¾”' => 'ᾜ', 'ᾕ' => 'á¾', 'á¾–' => 'ᾞ', 'á¾—' => 'ᾟ', 'á¾ ' => 'ᾨ', 'ᾡ' => 'ᾩ', 'á¾¢' => 'ᾪ', 'á¾£' => 'ᾫ', 'ᾤ' => 'ᾬ', 'á¾¥' => 'á¾', 'ᾦ' => 'á¾®', 'á¾§' => 'ᾯ', 'á¾°' => 'Ᾰ', 'á¾±' => 'á¾¹', 'á¾³' => 'á¾¼', 'á¾¾' => 'Ι', 'ῃ' => 'ῌ', 'á¿' => 'Ῐ', 'á¿‘' => 'á¿™', 'á¿ ' => 'Ῠ', 'á¿¡' => 'á¿©', 'á¿¥' => 'Ῥ', 'ῳ' => 'ῼ', 'â…Ž' => 'Ⅎ', 'â…°' => 'â… ', 'â…±' => 'â…¡', 'â…²' => 'â…¢', 'â…³' => 'â…£', 'â…´' => 'â…¤', 'â…µ' => 'â…¥', 'â…¶' => 'â…¦', 'â…·' => 'â…§', 'â…¸' => 'â…¨', 'â…¹' => 'â…©', 'â…º' => 'â…ª', 'â…»' => 'â…«', 'â…¼' => 'â…¬', 'â…½' => 'â…', 'â…¾' => 'â…®', 'â…¿' => 'â…¯', 'ↄ' => 'Ↄ', 'â“' => 'â’¶', 'â“‘' => 'â’·', 'â“’' => 'â’¸', 'â““' => 'â’¹', 'â“”' => 'â’º', 'â“•' => 'â’»', 'â“–' => 'â’¼', 'â“—' => 'â’½', 'ⓘ' => 'â’¾', 'â“™' => 'â’¿', 'ⓚ' => 'â“€', 'â“›' => 'â“', 'ⓜ' => 'â“‚', 'â“' => 'Ⓝ', 'ⓞ' => 'â“„', 'ⓟ' => 'â“…', 'â“ ' => 'Ⓠ', 'â“¡' => 'Ⓡ', 'â“¢' => 'Ⓢ', 'â“£' => 'Ⓣ', 'ⓤ' => 'Ⓤ', 'â“¥' => 'â“‹', 'ⓦ' => 'Ⓦ', 'â“§' => 'â“', 'ⓨ' => 'Ⓨ', 'â“©' => 'â“', 'â°°' => 'â°€', 'â°±' => 'â°', 'â°²' => 'â°‚', 'â°³' => 'â°ƒ', 'â°´' => 'â°„', 'â°µ' => 'â°…', 'â°¶' => 'â°†', 'â°·' => 'â°‡', 'â°¸' => 'â°ˆ', 'â°¹' => 'â°‰', 'â°º' => 'â°Š', 'â°»' => 'â°‹', 'â°¼' => 'â°Œ', 'â°½' => 'â°', 'â°¾' => 'â°Ž', 'â°¿' => 'â°', 'â±€' => 'â°', 'â±' => 'â°‘', 'ⱂ' => 'â°’', 'ⱃ' => 'â°“', 'ⱄ' => 'â°”', 'â±…' => 'â°•', 'ⱆ' => 'â°–', 'ⱇ' => 'â°—', 'ⱈ' => 'â°˜', 'ⱉ' => 'â°™', 'ⱊ' => 'â°š', 'ⱋ' => 'â°›', 'ⱌ' => 'â°œ', 'â±' => 'â°', 'ⱎ' => 'â°ž', 'â±' => 'â°Ÿ', 'â±' => 'â° ', 'ⱑ' => 'â°¡', 'â±’' => 'â°¢', 'ⱓ' => 'â°£', 'â±”' => 'â°¤', 'ⱕ' => 'â°¥', 'â±–' => 'â°¦', 'â±—' => 'â°§', 'ⱘ' => 'â°¨', 'â±™' => 'â°©', 'ⱚ' => 'â°ª', 'â±›' => 'â°«', 'ⱜ' => 'â°¬', 'â±' => 'â°', 'ⱞ' => 'â°®', 'ⱡ' => 'â± ', 'â±¥' => 'Ⱥ', 'ⱦ' => 'Ⱦ', 'ⱨ' => 'â±§', 'ⱪ' => 'Ⱪ', 'ⱬ' => 'Ⱬ', 'â±³' => 'â±²', 'â±¶' => 'â±µ', 'â²' => 'â²€', 'ⲃ' => 'Ⲃ', 'â²…' => 'Ⲅ', 'ⲇ' => 'Ⲇ', 'ⲉ' => 'Ⲉ', 'ⲋ' => 'Ⲋ', 'â²' => 'Ⲍ', 'â²' => 'Ⲏ', 'ⲑ' => 'â²', 'ⲓ' => 'â²’', 'ⲕ' => 'â²”', 'â²—' => 'â²–', 'â²™' => 'Ⲙ', 'â²›' => 'Ⲛ', 'â²' => 'Ⲝ', 'ⲟ' => 'Ⲟ', 'ⲡ' => 'â² ', 'â²£' => 'â²¢', 'â²¥' => 'Ⲥ', 'â²§' => 'Ⲧ', 'ⲩ' => 'Ⲩ', 'ⲫ' => 'Ⲫ', 'â²' => 'Ⲭ', 'ⲯ' => 'â²®', 'â²±' => 'â²°', 'â²³' => 'â²²', 'â²µ' => 'â²´', 'â²·' => 'â²¶', 'â²¹' => 'Ⲹ', 'â²»' => 'Ⲻ', 'â²½' => 'â²¼', 'ⲿ' => 'â²¾', 'â³' => 'â³€', 'ⳃ' => 'Ⳃ', 'â³…' => 'Ⳅ', 'ⳇ' => 'Ⳇ', 'ⳉ' => 'Ⳉ', 'ⳋ' => 'Ⳋ', 'â³' => 'Ⳍ', 'â³' => 'Ⳏ', 'ⳑ' => 'â³', 'ⳓ' => 'â³’', 'ⳕ' => 'â³”', 'â³—' => 'â³–', 'â³™' => 'Ⳙ', 'â³›' => 'Ⳛ', 'â³' => 'Ⳝ', 'ⳟ' => 'Ⳟ', 'ⳡ' => 'â³ ', 'â³£' => 'â³¢', 'ⳬ' => 'Ⳬ', 'â³®' => 'â³', 'â³³' => 'â³²', 'â´€' => 'á‚ ', 'â´' => 'á‚¡', 'â´‚' => 'á‚¢', 'â´ƒ' => 'á‚£', 'â´„' => 'Ⴄ', 'â´…' => 'á‚¥', 'â´†' => 'Ⴆ', 'â´‡' => 'á‚§', 'â´ˆ' => 'Ⴈ', 'â´‰' => 'á‚©', 'â´Š' => 'Ⴊ', 'â´‹' => 'á‚«', 'â´Œ' => 'Ⴌ', 'â´' => 'á‚', 'â´Ž' => 'á‚®', 'â´' => 'Ⴏ', 'â´' => 'á‚°', 'â´‘' => 'Ⴑ', 'â´’' => 'Ⴒ', 'â´“' => 'Ⴓ', 'â´”' => 'á‚´', 'â´•' => 'Ⴕ', 'â´–' => 'á‚¶', 'â´—' => 'á‚·', 'â´˜' => 'Ⴘ', 'â´™' => 'Ⴙ', 'â´š' => 'Ⴚ', 'â´›' => 'á‚»', 'â´œ' => 'Ⴜ', 'â´' => 'Ⴝ', 'â´ž' => 'Ⴞ', 'â´Ÿ' => 'á‚¿', 'â´ ' => 'Ⴠ', 'â´¡' => 'áƒ', 'â´¢' => 'Ⴢ', 'â´£' => 'Ⴣ', 'â´¤' => 'Ⴤ', 'â´¥' => 'Ⴥ', 'â´§' => 'Ⴧ', 'â´' => 'áƒ', 'ê™' => 'Ꙁ', 'ꙃ' => 'Ꙃ', 'ê™…' => 'Ꙅ', 'ꙇ' => 'Ꙇ', 'ꙉ' => 'Ꙉ', 'ꙋ' => 'Ꙋ', 'ê™' => 'Ꙍ', 'ê™' => 'Ꙏ', 'ꙑ' => 'ê™', 'ꙓ' => 'ê™’', 'ꙕ' => 'ê™”', 'ê™—' => 'ê™–', 'ê™™' => 'Ꙙ', 'ê™›' => 'Ꙛ', 'ê™' => 'Ꙝ', 'ꙟ' => 'Ꙟ', 'ꙡ' => 'ê™ ', 'ꙣ' => 'Ꙣ', 'ꙥ' => 'Ꙥ', 'ê™§' => 'Ꙧ', 'ꙩ' => 'Ꙩ', 'ꙫ' => 'Ꙫ', 'ê™' => 'Ꙭ', 'êš' => 'Ꚁ', 'ꚃ' => 'êš‚', 'êš…' => 'êš„', 'ꚇ' => 'Ꚇ', 'ꚉ' => 'Ꚉ', 'êš‹' => 'Ꚋ', 'êš' => 'Ꚍ', 'êš' => 'Ꚏ', 'êš‘' => 'êš', 'êš“' => 'êš’', 'êš•' => 'êš”', 'êš—' => 'êš–', 'êš™' => 'Ꚙ', 'êš›' => 'êšš', 'ꜣ' => 'Ꜣ', 'ꜥ' => 'Ꜥ', 'ꜧ' => 'Ꜧ', 'ꜩ' => 'Ꜩ', 'ꜫ' => 'Ꜫ', 'êœ' => 'Ꜭ', 'ꜯ' => 'Ꜯ', 'ꜳ' => 'Ꜳ', 'ꜵ' => 'Ꜵ', 'ꜷ' => 'Ꜷ', 'ꜹ' => 'Ꜹ', 'ꜻ' => 'Ꜻ', 'ꜽ' => 'Ꜽ', 'ꜿ' => 'Ꜿ', 'ê' => 'ê€', 'êƒ' => 'ê‚', 'ê…' => 'ê„', 'ê‡' => 'ê†', 'ê‰' => 'êˆ', 'ê‹' => 'êŠ', 'ê' => 'êŒ', 'ê' => 'êŽ', 'ê‘' => 'ê', 'ê“' => 'ê’', 'ê•' => 'ê”', 'ê—' => 'ê–', 'ê™' => 'ê˜', 'ê›' => 'êš', 'ê' => 'êœ', 'êŸ' => 'êž', 'ê¡' => 'ê ', 'ê£' => 'ê¢', 'ê¥' => 'ê¤', 'ê§' => 'ê¦', 'ê©' => 'ê¨', 'ê«' => 'êª', 'ê' => 'ê¬', 'ê¯' => 'ê®', 'êº' => 'ê¹', 'ê¼' => 'ê»', 'ê¿' => 'ê¾', 'êž' => 'Ꞁ', 'ꞃ' => 'êž‚', 'êž…' => 'êž„', 'ꞇ' => 'Ꞇ', 'ꞌ' => 'êž‹', 'êž‘' => 'êž', 'êž“' => 'êž’', 'êž”' => 'Ꞔ', 'êž—' => 'êž–', 'êž™' => 'Ꞙ', 'êž›' => 'êžš', 'êž' => 'êžœ', 'ꞟ' => 'êžž', 'êž¡' => 'êž ', 'ꞣ' => 'Ꞣ', 'ꞥ' => 'Ꞥ', 'êž§' => 'Ꞧ', 'êž©' => 'Ꞩ', 'êžµ' => 'êž´', 'êž·' => 'êž¶', 'êž¹' => 'Ꞹ', 'êž»' => 'Ꞻ', 'êž½' => 'êž¼', 'êž¿' => 'êž¾', 'ꟃ' => 'Ꟃ', 'ꟈ' => 'Ꟈ', 'ꟊ' => 'Ꟊ', 'ꟶ' => 'Ꟶ', 'ê“' => 'êž³', 'ê°' => 'Ꭰ', 'ê±' => 'Ꭱ', 'ê²' => 'Ꭲ', 'ê³' => 'Ꭳ', 'ê´' => 'Ꭴ', 'êµ' => 'Ꭵ', 'ê¶' => 'Ꭶ', 'ê·' => 'Ꭷ', 'ê¸' => 'Ꭸ', 'ê¹' => 'Ꭹ', 'êº' => 'Ꭺ', 'ê»' => 'Ꭻ', 'ê¼' => 'Ꭼ', 'ê½' => 'áŽ', 'ê¾' => 'Ꭾ', 'ê¿' => 'Ꭿ', 'ꮀ' => 'Ꮀ', 'ê®' => 'Ꮁ', 'ꮂ' => 'Ꮂ', 'ꮃ' => 'Ꮃ', 'ꮄ' => 'Ꮄ', 'ê®…' => 'Ꮅ', 'ꮆ' => 'Ꮆ', 'ꮇ' => 'Ꮇ', 'ꮈ' => 'Ꮈ', 'ꮉ' => 'Ꮉ', 'ꮊ' => 'Ꮊ', 'ꮋ' => 'Ꮋ', 'ꮌ' => 'Ꮌ', 'ê®' => 'Ꮍ', 'ꮎ' => 'Ꮎ', 'ê®' => 'Ꮏ', 'ê®' => 'á€', 'ꮑ' => 'á', 'ê®’' => 'á‚', 'ꮓ' => 'áƒ', 'ê®”' => 'á„', 'ꮕ' => 'á…', 'ê®–' => 'á†', 'ê®—' => 'á‡', 'ꮘ' => 'áˆ', 'ê®™' => 'á‰', 'ꮚ' => 'áŠ', 'ê®›' => 'á‹', 'ꮜ' => 'áŒ', 'ê®' => 'á', 'ꮞ' => 'áŽ', 'ꮟ' => 'á', 'ê® ' => 'á', 'ꮡ' => 'á‘', 'ꮢ' => 'á’', 'ꮣ' => 'á“', 'ꮤ' => 'á”', 'ꮥ' => 'á•', 'ꮦ' => 'á–', 'ê®§' => 'á—', 'ꮨ' => 'á˜', 'ꮩ' => 'á™', 'ꮪ' => 'áš', 'ꮫ' => 'á›', 'ꮬ' => 'áœ', 'ê®' => 'á', 'ê®®' => 'áž', 'ꮯ' => 'áŸ', 'ê®°' => 'á ', 'ê®±' => 'á¡', 'ꮲ' => 'á¢', 'ꮳ' => 'á£', 'ê®´' => 'á¤', 'ꮵ' => 'á¥', 'ê®¶' => 'á¦', 'ê®·' => 'á§', 'ꮸ' => 'á¨', 'ꮹ' => 'á©', 'ꮺ' => 'áª', 'ê®»' => 'á«', 'ꮼ' => 'á¬', 'ꮽ' => 'á', 'ꮾ' => 'á®', 'ꮿ' => 'á¯', 'ï½' => 'A', 'b' => 'ï¼¢', 'c' => 'ï¼£', 'd' => 'D', 'ï½…' => 'ï¼¥', 'f' => 'F', 'g' => 'ï¼§', 'h' => 'H', 'i' => 'I', 'j' => 'J', 'k' => 'K', 'l' => 'L', 'ï½' => 'ï¼', 'n' => 'ï¼®', 'ï½' => 'O', 'ï½' => 'ï¼°', 'q' => 'ï¼±', 'ï½’' => 'ï¼²', 's' => 'ï¼³', 'ï½”' => 'ï¼´', 'u' => 'ï¼µ', 'ï½–' => 'ï¼¶', 'ï½—' => 'ï¼·', 'x' => 'X', 'ï½™' => 'ï¼¹', 'z' => 'Z', 'ð¨' => 'ð€', 'ð©' => 'ð', 'ðª' => 'ð‚', 'ð«' => 'ðƒ', 'ð¬' => 'ð„', 'ð' => 'ð…', 'ð®' => 'ð†', 'ð¯' => 'ð‡', 'ð°' => 'ðˆ', 'ð±' => 'ð‰', 'ð²' => 'ðŠ', 'ð³' => 'ð‹', 'ð´' => 'ðŒ', 'ðµ' => 'ð', 'ð¶' => 'ðŽ', 'ð·' => 'ð', 'ð¸' => 'ð', 'ð¹' => 'ð‘', 'ðº' => 'ð’', 'ð»' => 'ð“', 'ð¼' => 'ð”', 'ð½' => 'ð•', 'ð¾' => 'ð–', 'ð¿' => 'ð—', 'ð‘€' => 'ð˜', 'ð‘' => 'ð™', 'ð‘‚' => 'ðš', 'ð‘ƒ' => 'ð›', 'ð‘„' => 'ðœ', 'ð‘…' => 'ð', 'ð‘†' => 'ðž', 'ð‘‡' => 'ðŸ', 'ð‘ˆ' => 'ð ', 'ð‘‰' => 'ð¡', 'ð‘Š' => 'ð¢', 'ð‘‹' => 'ð£', 'ð‘Œ' => 'ð¤', 'ð‘' => 'ð¥', 'ð‘Ž' => 'ð¦', 'ð‘' => 'ð§', 'ð“˜' => 'ð’°', 'ð“™' => 'ð’±', 'ð“š' => 'ð’²', 'ð“›' => 'ð’³', 'ð“œ' => 'ð’´', 'ð“' => 'ð’µ', 'ð“ž' => 'ð’¶', 'ð“Ÿ' => 'ð’·', 'ð“ ' => 'ð’¸', 'ð“¡' => 'ð’¹', 'ð“¢' => 'ð’º', 'ð“£' => 'ð’»', 'ð“¤' => 'ð’¼', 'ð“¥' => 'ð’½', 'ð“¦' => 'ð’¾', 'ð“§' => 'ð’¿', 'ð“¨' => 'ð“€', 'ð“©' => 'ð“', 'ð“ª' => 'ð“‚', 'ð“«' => 'ð“ƒ', 'ð“¬' => 'ð“„', 'ð“' => 'ð“…', 'ð“®' => 'ð“†', 'ð“¯' => 'ð“‡', 'ð“°' => 'ð“ˆ', 'ð“±' => 'ð“‰', 'ð“²' => 'ð“Š', 'ð“³' => 'ð“‹', 'ð“´' => 'ð“Œ', 'ð“µ' => 'ð“', 'ð“¶' => 'ð“Ž', 'ð“·' => 'ð“', 'ð“¸' => 'ð“', 'ð“¹' => 'ð“‘', 'ð“º' => 'ð“’', 'ð“»' => 'ð““', 'ð³€' => 'ð²€', 'ð³' => 'ð²', 'ð³‚' => 'ð²‚', 'ð³ƒ' => 'ð²ƒ', 'ð³„' => 'ð²„', 'ð³…' => 'ð²…', 'ð³†' => 'ð²†', 'ð³‡' => 'ð²‡', 'ð³ˆ' => 'ð²ˆ', 'ð³‰' => 'ð²‰', 'ð³Š' => 'ð²Š', 'ð³‹' => 'ð²‹', 'ð³Œ' => 'ð²Œ', 'ð³' => 'ð²', 'ð³Ž' => 'ð²Ž', 'ð³' => 'ð²', 'ð³' => 'ð²', 'ð³‘' => 'ð²‘', 'ð³’' => 'ð²’', 'ð³“' => 'ð²“', 'ð³”' => 'ð²”', 'ð³•' => 'ð²•', 'ð³–' => 'ð²–', 'ð³—' => 'ð²—', 'ð³˜' => 'ð²˜', 'ð³™' => 'ð²™', 'ð³š' => 'ð²š', 'ð³›' => 'ð²›', 'ð³œ' => 'ð²œ', 'ð³' => 'ð²', 'ð³ž' => 'ð²ž', 'ð³Ÿ' => 'ð²Ÿ', 'ð³ ' => 'ð² ', 'ð³¡' => 'ð²¡', 'ð³¢' => 'ð²¢', 'ð³£' => 'ð²£', 'ð³¤' => 'ð²¤', 'ð³¥' => 'ð²¥', 'ð³¦' => 'ð²¦', 'ð³§' => 'ð²§', 'ð³¨' => 'ð²¨', 'ð³©' => 'ð²©', 'ð³ª' => 'ð²ª', 'ð³«' => 'ð²«', 'ð³¬' => 'ð²¬', 'ð³' => 'ð²', 'ð³®' => 'ð²®', 'ð³¯' => 'ð²¯', 'ð³°' => 'ð²°', 'ð³±' => 'ð²±', 'ð³²' => 'ð²²', 'ð‘£€' => 'ð‘¢ ', 'ð‘£' => '𑢡', '𑣂' => 'ð‘¢¢', '𑣃' => 'ð‘¢£', '𑣄' => '𑢤', 'ð‘£…' => 'ð‘¢¥', '𑣆' => '𑢦', '𑣇' => 'ð‘¢§', '𑣈' => '𑢨', '𑣉' => '𑢩', '𑣊' => '𑢪', '𑣋' => '𑢫', '𑣌' => '𑢬', 'ð‘£' => 'ð‘¢', '𑣎' => 'ð‘¢®', 'ð‘£' => '𑢯', 'ð‘£' => 'ð‘¢°', '𑣑' => 'ð‘¢±', 'ð‘£’' => 'ð‘¢²', '𑣓' => 'ð‘¢³', 'ð‘£”' => 'ð‘¢´', '𑣕' => 'ð‘¢µ', 'ð‘£–' => 'ð‘¢¶', 'ð‘£—' => 'ð‘¢·', '𑣘' => '𑢸', 'ð‘£™' => 'ð‘¢¹', '𑣚' => '𑢺', 'ð‘£›' => 'ð‘¢»', '𑣜' => 'ð‘¢¼', 'ð‘£' => 'ð‘¢½', '𑣞' => 'ð‘¢¾', '𑣟' => '𑢿', 'ð–¹ ' => 'ð–¹€', '𖹡' => 'ð–¹', 'ð–¹¢' => '𖹂', 'ð–¹£' => '𖹃', '𖹤' => '𖹄', 'ð–¹¥' => 'ð–¹…', '𖹦' => '𖹆', 'ð–¹§' => '𖹇', '𖹨' => '𖹈', '𖹩' => '𖹉', '𖹪' => '𖹊', '𖹫' => '𖹋', '𖹬' => '𖹌', 'ð–¹' => 'ð–¹', 'ð–¹®' => '𖹎', '𖹯' => 'ð–¹', 'ð–¹°' => 'ð–¹', 'ð–¹±' => '𖹑', 'ð–¹²' => 'ð–¹’', 'ð–¹³' => '𖹓', 'ð–¹´' => 'ð–¹”', 'ð–¹µ' => '𖹕', 'ð–¹¶' => 'ð–¹–', 'ð–¹·' => 'ð–¹—', '𖹸' => '𖹘', 'ð–¹¹' => 'ð–¹™', '𖹺' => '𖹚', 'ð–¹»' => 'ð–¹›', 'ð–¹¼' => '𖹜', 'ð–¹½' => 'ð–¹', 'ð–¹¾' => '𖹞', '𖹿' => '𖹟', '𞤢' => '𞤀', '𞤣' => 'ðž¤', '𞤤' => '𞤂', '𞤥' => '𞤃', '𞤦' => '𞤄', '𞤧' => '𞤅', '𞤨' => '𞤆', '𞤩' => '𞤇', '𞤪' => '𞤈', '𞤫' => '𞤉', '𞤬' => '𞤊', 'ðž¤' => '𞤋', '𞤮' => '𞤌', '𞤯' => 'ðž¤', '𞤰' => '𞤎', '𞤱' => 'ðž¤', '𞤲' => 'ðž¤', '𞤳' => '𞤑', '𞤴' => '𞤒', '𞤵' => '𞤓', '𞤶' => '𞤔', '𞤷' => '𞤕', '𞤸' => '𞤖', '𞤹' => '𞤗', '𞤺' => '𞤘', '𞤻' => '𞤙', '𞤼' => '𞤚', '𞤽' => '𞤛', '𞤾' => '𞤜', '𞤿' => 'ðž¤', '𞥀' => '𞤞', 'ðž¥' => '𞤟', '𞥂' => '𞤠', '𞥃' => '𞤡');
diff --git a/vendor_prefixed/symfony/polyfill-mbstring/bootstrap.php b/vendor_prefixed/symfony/polyfill-mbstring/bootstrap.php
new file mode 100644
index 00000000..9f38eedc
--- /dev/null
+++ b/vendor_prefixed/symfony/polyfill-mbstring/bootstrap.php
@@ -0,0 +1,147 @@
+
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+use Customify\Vendor\Symfony\Polyfill\Mbstring as p;
+
+if (\PHP_VERSION_ID >= 80000) {
+ return require __DIR__.'/bootstrap80.php';
+}
+
+if (!function_exists('mb_convert_encoding')) {
+ function mb_convert_encoding($string, $to_encoding, $from_encoding = null) { return p\Mbstring::mb_convert_encoding($string, $to_encoding, $from_encoding); }
+}
+if (!function_exists('mb_decode_mimeheader')) {
+ function mb_decode_mimeheader($string) { return p\Mbstring::mb_decode_mimeheader($string); }
+}
+if (!function_exists('mb_encode_mimeheader')) {
+ function mb_encode_mimeheader($string, $charset = null, $transfer_encoding = null, $newline = "\r\n", $indent = 0) { return p\Mbstring::mb_encode_mimeheader($string, $charset, $transfer_encoding, $newline, $indent); }
+}
+if (!function_exists('mb_decode_numericentity')) {
+ function mb_decode_numericentity($string, $map, $encoding = null) { return p\Mbstring::mb_decode_numericentity($string, $map, $encoding); }
+}
+if (!function_exists('mb_encode_numericentity')) {
+ function mb_encode_numericentity($string, $map, $encoding = null, $hex = false) { return p\Mbstring::mb_encode_numericentity($string, $map, $encoding, $hex); }
+}
+if (!function_exists('mb_convert_case')) {
+ function mb_convert_case($string, $mode, $encoding = null) { return p\Mbstring::mb_convert_case($string, $mode, $encoding); }
+}
+if (!function_exists('mb_internal_encoding')) {
+ function mb_internal_encoding($encoding = null) { return p\Mbstring::mb_internal_encoding($encoding); }
+}
+if (!function_exists('mb_language')) {
+ function mb_language($language = null) { return p\Mbstring::mb_language($language); }
+}
+if (!function_exists('mb_list_encodings')) {
+ function mb_list_encodings() { return p\Mbstring::mb_list_encodings(); }
+}
+if (!function_exists('mb_encoding_aliases')) {
+ function mb_encoding_aliases($encoding) { return p\Mbstring::mb_encoding_aliases($encoding); }
+}
+if (!function_exists('mb_check_encoding')) {
+ function mb_check_encoding($value = null, $encoding = null) { return p\Mbstring::mb_check_encoding($value, $encoding); }
+}
+if (!function_exists('mb_detect_encoding')) {
+ function mb_detect_encoding($string, $encodings = null, $strict = false) { return p\Mbstring::mb_detect_encoding($string, $encodings, $strict); }
+}
+if (!function_exists('mb_detect_order')) {
+ function mb_detect_order($encoding = null) { return p\Mbstring::mb_detect_order($encoding); }
+}
+if (!function_exists('mb_parse_str')) {
+ function mb_parse_str($string, &$result = []) { parse_str($string, $result); }
+}
+if (!function_exists('mb_strlen')) {
+ function mb_strlen($string, $encoding = null) { return p\Mbstring::mb_strlen($string, $encoding); }
+}
+if (!function_exists('mb_strpos')) {
+ function mb_strpos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_strpos($haystack, $needle, $offset, $encoding); }
+}
+if (!function_exists('mb_strtolower')) {
+ function mb_strtolower($string, $encoding = null) { return p\Mbstring::mb_strtolower($string, $encoding); }
+}
+if (!function_exists('mb_strtoupper')) {
+ function mb_strtoupper($string, $encoding = null) { return p\Mbstring::mb_strtoupper($string, $encoding); }
+}
+if (!function_exists('mb_substitute_character')) {
+ function mb_substitute_character($substitute_character = null) { return p\Mbstring::mb_substitute_character($substitute_character); }
+}
+if (!function_exists('mb_substr')) {
+ function mb_substr($string, $start, $length = 2147483647, $encoding = null) { return p\Mbstring::mb_substr($string, $start, $length, $encoding); }
+}
+if (!function_exists('mb_stripos')) {
+ function mb_stripos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_stripos($haystack, $needle, $offset, $encoding); }
+}
+if (!function_exists('mb_stristr')) {
+ function mb_stristr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_stristr($haystack, $needle, $before_needle, $encoding); }
+}
+if (!function_exists('mb_strrchr')) {
+ function mb_strrchr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_strrchr($haystack, $needle, $before_needle, $encoding); }
+}
+if (!function_exists('mb_strrichr')) {
+ function mb_strrichr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_strrichr($haystack, $needle, $before_needle, $encoding); }
+}
+if (!function_exists('mb_strripos')) {
+ function mb_strripos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_strripos($haystack, $needle, $offset, $encoding); }
+}
+if (!function_exists('mb_strrpos')) {
+ function mb_strrpos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_strrpos($haystack, $needle, $offset, $encoding); }
+}
+if (!function_exists('mb_strstr')) {
+ function mb_strstr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_strstr($haystack, $needle, $before_needle, $encoding); }
+}
+if (!function_exists('mb_get_info')) {
+ function mb_get_info($type = 'all') { return p\Mbstring::mb_get_info($type); }
+}
+if (!function_exists('mb_http_output')) {
+ function mb_http_output($encoding = null) { return p\Mbstring::mb_http_output($encoding); }
+}
+if (!function_exists('mb_strwidth')) {
+ function mb_strwidth($string, $encoding = null) { return p\Mbstring::mb_strwidth($string, $encoding); }
+}
+if (!function_exists('mb_substr_count')) {
+ function mb_substr_count($haystack, $needle, $encoding = null) { return p\Mbstring::mb_substr_count($haystack, $needle, $encoding); }
+}
+if (!function_exists('mb_output_handler')) {
+ function mb_output_handler($string, $status) { return p\Mbstring::mb_output_handler($string, $status); }
+}
+if (!function_exists('mb_http_input')) {
+ function mb_http_input($type = null) { return p\Mbstring::mb_http_input($type); }
+}
+
+if (!function_exists('mb_convert_variables')) {
+ function mb_convert_variables($to_encoding, $from_encoding, &...$vars) { return p\Mbstring::mb_convert_variables($to_encoding, $from_encoding, ...$vars); }
+}
+
+if (!function_exists('mb_ord')) {
+ function mb_ord($string, $encoding = null) { return p\Mbstring::mb_ord($string, $encoding); }
+}
+if (!function_exists('mb_chr')) {
+ function mb_chr($codepoint, $encoding = null) { return p\Mbstring::mb_chr($codepoint, $encoding); }
+}
+if (!function_exists('mb_scrub')) {
+ function mb_scrub($string, $encoding = null) { $encoding = null === $encoding ? mb_internal_encoding() : $encoding; return mb_convert_encoding($string, $encoding, $encoding); }
+}
+if (!function_exists('mb_str_split')) {
+ function mb_str_split($string, $length = 1, $encoding = null) { return p\Mbstring::mb_str_split($string, $length, $encoding); }
+}
+
+if (extension_loaded('mbstring')) {
+ return;
+}
+
+if (!defined('MB_CASE_UPPER')) {
+ define('MB_CASE_UPPER', 0);
+}
+if (!defined('MB_CASE_LOWER')) {
+ define('MB_CASE_LOWER', 1);
+}
+if (!defined('MB_CASE_TITLE')) {
+ define('MB_CASE_TITLE', 2);
+}
diff --git a/vendor_prefixed/symfony/polyfill-mbstring/bootstrap80.php b/vendor_prefixed/symfony/polyfill-mbstring/bootstrap80.php
new file mode 100644
index 00000000..8a347ca0
--- /dev/null
+++ b/vendor_prefixed/symfony/polyfill-mbstring/bootstrap80.php
@@ -0,0 +1,254 @@
+
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+use Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring as p;
+if (!\function_exists('mb_convert_encoding')) {
+ function mb_convert_encoding(array|string|null $string, ?string $to_encoding, array|string|null $from_encoding = null) : array|string|false
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_convert_encoding($string ?? '', (string) $to_encoding, $from_encoding);
+ }
+}
+if (!\function_exists('mb_decode_mimeheader')) {
+ function mb_decode_mimeheader(?string $string) : string
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_decode_mimeheader((string) $string);
+ }
+}
+if (!\function_exists('mb_encode_mimeheader')) {
+ function mb_encode_mimeheader(?string $string, ?string $charset = null, ?string $transfer_encoding = null, ?string $newline = "\r\n", ?int $indent = 0) : string
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_encode_mimeheader((string) $string, $charset, $transfer_encoding, (string) $newline, (int) $indent);
+ }
+}
+if (!\function_exists('mb_decode_numericentity')) {
+ function mb_decode_numericentity(?string $string, array $map, ?string $encoding = null) : string
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_decode_numericentity((string) $string, $map, $encoding);
+ }
+}
+if (!\function_exists('mb_encode_numericentity')) {
+ function mb_encode_numericentity(?string $string, array $map, ?string $encoding = null, ?bool $hex = \false) : string
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_encode_numericentity((string) $string, $map, $encoding, (bool) $hex);
+ }
+}
+if (!\function_exists('mb_convert_case')) {
+ function mb_convert_case(?string $string, ?int $mode, ?string $encoding = null) : string
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_convert_case((string) $string, (int) $mode, $encoding);
+ }
+}
+if (!\function_exists('mb_internal_encoding')) {
+ function mb_internal_encoding(?string $encoding = null) : string|bool
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_internal_encoding($encoding);
+ }
+}
+if (!\function_exists('mb_language')) {
+ function mb_language(?string $language = null) : string|bool
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_language($language);
+ }
+}
+if (!\function_exists('mb_list_encodings')) {
+ function mb_list_encodings() : array
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_list_encodings();
+ }
+}
+if (!\function_exists('mb_encoding_aliases')) {
+ function mb_encoding_aliases(?string $encoding) : array
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_encoding_aliases((string) $encoding);
+ }
+}
+if (!\function_exists('mb_check_encoding')) {
+ function mb_check_encoding(array|string|null $value = null, ?string $encoding = null) : bool
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_check_encoding($value, $encoding);
+ }
+}
+if (!\function_exists('mb_detect_encoding')) {
+ function mb_detect_encoding(?string $string, array|string|null $encodings = null, ?bool $strict = \false) : string|false
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_detect_encoding((string) $string, $encodings, (bool) $strict);
+ }
+}
+if (!\function_exists('mb_detect_order')) {
+ function mb_detect_order(array|string|null $encoding = null) : array|bool
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_detect_order((string) $encoding);
+ }
+}
+if (!\function_exists('mb_parse_str')) {
+ function mb_parse_str(?string $string, &$result = []) : bool
+ {
+ \parse_str((string) $string, $result);
+ }
+}
+if (!\function_exists('mb_strlen')) {
+ function mb_strlen(?string $string, ?string $encoding = null) : int
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_strlen((string) $string, $encoding);
+ }
+}
+if (!\function_exists('mb_strpos')) {
+ function mb_strpos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null) : int|false
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_strpos((string) $haystack, (string) $needle, (int) $offset, $encoding);
+ }
+}
+if (!\function_exists('mb_strtolower')) {
+ function mb_strtolower(?string $string, ?string $encoding = null) : string
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_strtolower((string) $string, $encoding);
+ }
+}
+if (!\function_exists('mb_strtoupper')) {
+ function mb_strtoupper(?string $string, ?string $encoding = null) : string
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_strtoupper((string) $string, $encoding);
+ }
+}
+if (!\function_exists('mb_substitute_character')) {
+ function mb_substitute_character(string|int|null $substitute_character = null) : string|int|bool
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_substitute_character($substitute_character);
+ }
+}
+if (!\function_exists('mb_substr')) {
+ function mb_substr(?string $string, ?int $start, ?int $length = null, ?string $encoding = null) : string
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_substr((string) $string, (int) $start, $length, $encoding);
+ }
+}
+if (!\function_exists('mb_stripos')) {
+ function mb_stripos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null) : int|false
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_stripos((string) $haystack, (string) $needle, (int) $offset, $encoding);
+ }
+}
+if (!\function_exists('mb_stristr')) {
+ function mb_stristr(?string $haystack, ?string $needle, ?bool $before_needle = \false, ?string $encoding = null) : string|false
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_stristr((string) $haystack, (string) $needle, (bool) $before_needle, $encoding);
+ }
+}
+if (!\function_exists('mb_strrchr')) {
+ function mb_strrchr(?string $haystack, ?string $needle, ?bool $before_needle = \false, ?string $encoding = null) : string|false
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_strrchr((string) $haystack, (string) $needle, $before_needle, (bool) $encoding);
+ }
+}
+if (!\function_exists('mb_strrichr')) {
+ function mb_strrichr(?string $haystack, ?string $needle, ?bool $before_needle = \false, ?string $encoding = null) : string|false
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_strrichr((string) $haystack, (string) $needle, (bool) $before_needle, $encoding);
+ }
+}
+if (!\function_exists('mb_strripos')) {
+ function mb_strripos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null) : int|false
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_strripos((string) $haystack, (string) $needle, (int) $offset, $encoding);
+ }
+}
+if (!\function_exists('mb_strrpos')) {
+ function mb_strrpos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null) : int|false
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_strrpos((string) $haystack, (string) $needle, (int) $offset, $encoding);
+ }
+}
+if (!\function_exists('mb_strstr')) {
+ function mb_strstr(?string $haystack, ?string $needle, ?bool $before_needle = \false, ?string $encoding = null) : string|false
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_strstr((string) $haystack, (string) $needle, (bool) $before_needle, $encoding);
+ }
+}
+if (!\function_exists('mb_get_info')) {
+ function mb_get_info(?string $type = 'all') : array|string|int|false
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_get_info((string) $type);
+ }
+}
+if (!\function_exists('mb_http_output')) {
+ function mb_http_output(?string $encoding = null) : string|bool
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_http_output($encoding);
+ }
+}
+if (!\function_exists('mb_strwidth')) {
+ function mb_strwidth(?string $string, ?string $encoding = null) : int
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_strwidth((string) $string, $encoding);
+ }
+}
+if (!\function_exists('mb_substr_count')) {
+ function mb_substr_count(?string $haystack, ?string $needle, ?string $encoding = null) : int
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_substr_count((string) $haystack, (string) $needle, $encoding);
+ }
+}
+if (!\function_exists('mb_output_handler')) {
+ function mb_output_handler(?string $string, ?int $status) : string
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_output_handler((string) $string, (int) $status);
+ }
+}
+if (!\function_exists('mb_http_input')) {
+ function mb_http_input(?string $type = null) : array|string|false
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_http_input($type);
+ }
+}
+if (!\function_exists('mb_convert_variables')) {
+ function mb_convert_variables(?string $to_encoding, array|string|null $from_encoding, mixed &$var, mixed &...$vars) : string|false
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_convert_variables((string) $to_encoding, $from_encoding ?? '', $var, ...$vars);
+ }
+}
+if (!\function_exists('mb_ord')) {
+ function mb_ord(?string $string, ?string $encoding = null) : int|false
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_ord((string) $string, $encoding);
+ }
+}
+if (!\function_exists('mb_chr')) {
+ function mb_chr(?int $codepoint, ?string $encoding = null) : string|false
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_chr((int) $codepoint, $encoding);
+ }
+}
+if (!\function_exists('mb_scrub')) {
+ function mb_scrub(?string $string, ?string $encoding = null) : string
+ {
+ $encoding ??= \mb_internal_encoding();
+ return \mb_convert_encoding((string) $string, $encoding, $encoding);
+ }
+}
+if (!\function_exists('mb_str_split')) {
+ function mb_str_split(?string $string, ?int $length = 1, ?string $encoding = null) : array
+ {
+ return \Pixelgrade\Customify\Vendor\Symfony\Polyfill\Mbstring\Mbstring::mb_str_split((string) $string, (int) $length, $encoding);
+ }
+}
+if (\extension_loaded('mbstring')) {
+ return;
+}
+if (!\defined('MB_CASE_UPPER')) {
+ \define('MB_CASE_UPPER', 0);
+}
+if (!\defined('MB_CASE_LOWER')) {
+ \define('MB_CASE_LOWER', 1);
+}
+if (!\defined('MB_CASE_TITLE')) {
+ \define('MB_CASE_TITLE', 2);
+}
diff --git a/vendor_prefixed/symfony/polyfill-mbstring/composer.json b/vendor_prefixed/symfony/polyfill-mbstring/composer.json
new file mode 100644
index 00000000..4261eb7e
--- /dev/null
+++ b/vendor_prefixed/symfony/polyfill-mbstring/composer.json
@@ -0,0 +1,48 @@
+{
+ "name": "symfony\/polyfill-mbstring",
+ "type": "library",
+ "description": "Symfony polyfill for the Mbstring extension",
+ "keywords": [
+ "polyfill",
+ "shim",
+ "compatibility",
+ "portable",
+ "mbstring"
+ ],
+ "homepage": "https:\/\/symfony.com",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https:\/\/symfony.com\/contributors"
+ }
+ ],
+ "require": {
+ "php": ">=7.1"
+ },
+ "autoload": {
+ "psr-4": {
+ "Pixelgrade\\Customify\\Vendor\\Symfony\\Polyfill\\Mbstring\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ]
+ },
+ "suggest": {
+ "ext-mbstring": "For best performance"
+ },
+ "minimum-stability": "dev",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.22-dev"
+ },
+ "thanks": {
+ "name": "symfony\/polyfill",
+ "url": "https:\/\/github.com\/symfony\/polyfill"
+ }
+ }
+}
\ No newline at end of file
diff --git a/vendor_prefixed/symfony/polyfill-php72/LICENSE b/vendor_prefixed/symfony/polyfill-php72/LICENSE
new file mode 100644
index 00000000..4cd8bdd3
--- /dev/null
+++ b/vendor_prefixed/symfony/polyfill-php72/LICENSE
@@ -0,0 +1,19 @@
+Copyright (c) 2015-2019 Fabien Potencier
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is furnished
+to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/vendor_prefixed/symfony/polyfill-php72/Php72.php b/vendor_prefixed/symfony/polyfill-php72/Php72.php
new file mode 100644
index 00000000..ec620fa8
--- /dev/null
+++ b/vendor_prefixed/symfony/polyfill-php72/Php72.php
@@ -0,0 +1,176 @@
+
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+namespace Pixelgrade\Customify\Vendor\Symfony\Polyfill\Php72;
+
+/**
+ * @author Nicolas Grekas
+ * @author Dariusz Rumiński
+ *
+ * @internal
+ */
+final class Php72
+{
+ private static $hashMask;
+ public static function utf8_encode($s)
+ {
+ $s .= $s;
+ $len = \strlen($s);
+ for ($i = $len >> 1, $j = 0; $i < $len; ++$i, ++$j) {
+ switch (\true) {
+ case $s[$i] < "€":
+ $s[$j] = $s[$i];
+ break;
+ case $s[$i] < "À":
+ $s[$j] = "Â";
+ $s[++$j] = $s[$i];
+ break;
+ default:
+ $s[$j] = "Ã";
+ $s[++$j] = \chr(\ord($s[$i]) - 64);
+ break;
+ }
+ }
+ return \substr($s, 0, $j);
+ }
+ public static function utf8_decode($s)
+ {
+ $s = (string) $s;
+ $len = \strlen($s);
+ for ($i = 0, $j = 0; $i < $len; ++$i, ++$j) {
+ switch ($s[$i] & "ð") {
+ case "À":
+ case "Ð":
+ $c = \ord($s[$i] & "\37") << 6 | \ord($s[++$i] & "?");
+ $s[$j] = $c < 256 ? \chr($c) : '?';
+ break;
+ case "ð":
+ ++$i;
+ // no break
+ case "à":
+ $s[$j] = '?';
+ $i += 2;
+ break;
+ default:
+ $s[$j] = $s[$i];
+ }
+ }
+ return \substr($s, 0, $j);
+ }
+ public static function php_os_family()
+ {
+ if ('\\' === \DIRECTORY_SEPARATOR) {
+ return 'Windows';
+ }
+ $map = ['Darwin' => 'Darwin', 'DragonFly' => 'BSD', 'FreeBSD' => 'BSD', 'NetBSD' => 'BSD', 'OpenBSD' => 'BSD', 'Linux' => 'Linux', 'SunOS' => 'Solaris'];
+ return isset($map[\PHP_OS]) ? $map[\PHP_OS] : 'Unknown';
+ }
+ public static function spl_object_id($object)
+ {
+ if (null === self::$hashMask) {
+ self::initHashMask();
+ }
+ if (null === ($hash = \spl_object_hash($object))) {
+ return;
+ }
+ // On 32-bit systems, PHP_INT_SIZE is 4,
+ return self::$hashMask ^ \hexdec(\substr($hash, 16 - (\PHP_INT_SIZE * 2 - 1), \PHP_INT_SIZE * 2 - 1));
+ }
+ public static function sapi_windows_vt100_support($stream, $enable = null)
+ {
+ if (!\is_resource($stream)) {
+ \trigger_error('sapi_windows_vt100_support() expects parameter 1 to be resource, ' . \gettype($stream) . ' given', \E_USER_WARNING);
+ return \false;
+ }
+ $meta = \stream_get_meta_data($stream);
+ if ('STDIO' !== $meta['stream_type']) {
+ \trigger_error('sapi_windows_vt100_support() was not able to analyze the specified stream', \E_USER_WARNING);
+ return \false;
+ }
+ // We cannot actually disable vt100 support if it is set
+ if (\false === $enable || !self::stream_isatty($stream)) {
+ return \false;
+ }
+ // The native function does not apply to stdin
+ $meta = \array_map('strtolower', $meta);
+ $stdin = 'php://stdin' === $meta['uri'] || 'php://fd/0' === $meta['uri'];
+ return !$stdin && (\false !== \getenv('ANSICON') || 'ON' === \getenv('ConEmuANSI') || 'xterm' === \getenv('TERM') || 'Hyper' === \getenv('TERM_PROGRAM'));
+ }
+ public static function stream_isatty($stream)
+ {
+ if (!\is_resource($stream)) {
+ \trigger_error('stream_isatty() expects parameter 1 to be resource, ' . \gettype($stream) . ' given', \E_USER_WARNING);
+ return \false;
+ }
+ if ('\\' === \DIRECTORY_SEPARATOR) {
+ $stat = @\fstat($stream);
+ // Check if formatted mode is S_IFCHR
+ return $stat ? 020000 === ($stat['mode'] & 0170000) : \false;
+ }
+ return \function_exists('posix_isatty') && @\posix_isatty($stream);
+ }
+ private static function initHashMask()
+ {
+ $obj = (object) [];
+ self::$hashMask = -1;
+ // check if we are nested in an output buffering handler to prevent a fatal error with ob_start() below
+ $obFuncs = ['ob_clean', 'ob_end_clean', 'ob_flush', 'ob_end_flush', 'ob_get_contents', 'ob_get_flush'];
+ foreach (\debug_backtrace(\PHP_VERSION_ID >= 50400 ? \DEBUG_BACKTRACE_IGNORE_ARGS : \false) as $frame) {
+ if (isset($frame['function'][0]) && !isset($frame['class']) && 'o' === $frame['function'][0] && \in_array($frame['function'], $obFuncs)) {
+ $frame['line'] = 0;
+ break;
+ }
+ }
+ if (!empty($frame['line'])) {
+ \ob_start();
+ \debug_zval_dump($obj);
+ self::$hashMask = (int) \substr(\ob_get_clean(), 17);
+ }
+ self::$hashMask ^= \hexdec(\substr(\spl_object_hash($obj), 16 - (\PHP_INT_SIZE * 2 - 1), \PHP_INT_SIZE * 2 - 1));
+ }
+ public static function mb_chr($code, $encoding = null)
+ {
+ if (0x80 > ($code %= 0x200000)) {
+ $s = \chr($code);
+ } elseif (0x800 > $code) {
+ $s = \chr(0xc0 | $code >> 6) . \chr(0x80 | $code & 0x3f);
+ } elseif (0x10000 > $code) {
+ $s = \chr(0xe0 | $code >> 12) . \chr(0x80 | $code >> 6 & 0x3f) . \chr(0x80 | $code & 0x3f);
+ } else {
+ $s = \chr(0xf0 | $code >> 18) . \chr(0x80 | $code >> 12 & 0x3f) . \chr(0x80 | $code >> 6 & 0x3f) . \chr(0x80 | $code & 0x3f);
+ }
+ if ('UTF-8' !== $encoding) {
+ $s = \mb_convert_encoding($s, $encoding, 'UTF-8');
+ }
+ return $s;
+ }
+ public static function mb_ord($s, $encoding = null)
+ {
+ if (null === $encoding) {
+ $s = \mb_convert_encoding($s, 'UTF-8');
+ } elseif ('UTF-8' !== $encoding) {
+ $s = \mb_convert_encoding($s, 'UTF-8', $encoding);
+ }
+ if (1 === \strlen($s)) {
+ return \ord($s);
+ }
+ $code = ($s = \unpack('C*', \substr($s, 0, 4))) ? $s[1] : 0;
+ if (0xf0 <= $code) {
+ return ($code - 0xf0 << 18) + ($s[2] - 0x80 << 12) + ($s[3] - 0x80 << 6) + $s[4] - 0x80;
+ }
+ if (0xe0 <= $code) {
+ return ($code - 0xe0 << 12) + ($s[2] - 0x80 << 6) + $s[3] - 0x80;
+ }
+ if (0xc0 <= $code) {
+ return ($code - 0xc0 << 6) + $s[2] - 0x80;
+ }
+ return $code;
+ }
+}
diff --git a/vendor_prefixed/symfony/polyfill-php72/bootstrap.php b/vendor_prefixed/symfony/polyfill-php72/bootstrap.php
new file mode 100644
index 00000000..fbb6035f
--- /dev/null
+++ b/vendor_prefixed/symfony/polyfill-php72/bootstrap.php
@@ -0,0 +1,57 @@
+
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+use Customify\Vendor\Symfony\Polyfill\Php72 as p;
+
+if (\PHP_VERSION_ID >= 70200) {
+ return;
+}
+
+if (!defined('PHP_FLOAT_DIG')) {
+ define('PHP_FLOAT_DIG', 15);
+}
+if (!defined('PHP_FLOAT_EPSILON')) {
+ define('PHP_FLOAT_EPSILON', 2.2204460492503E-16);
+}
+if (!defined('PHP_FLOAT_MIN')) {
+ define('PHP_FLOAT_MIN', 2.2250738585072E-308);
+}
+if (!defined('PHP_FLOAT_MAX')) {
+ define('PHP_FLOAT_MAX', 1.7976931348623157E+308);
+}
+if (!defined('PHP_OS_FAMILY')) {
+ define('PHP_OS_FAMILY', p\Php72::php_os_family());
+}
+
+if ('\\' === \DIRECTORY_SEPARATOR && !function_exists('sapi_windows_vt100_support')) {
+ function sapi_windows_vt100_support($stream, $enable = null) { return p\Php72::sapi_windows_vt100_support($stream, $enable); }
+}
+if (!function_exists('stream_isatty')) {
+ function stream_isatty($stream) { return p\Php72::stream_isatty($stream); }
+}
+if (!function_exists('utf8_encode')) {
+ function utf8_encode($string) { return p\Php72::utf8_encode($string); }
+}
+if (!function_exists('utf8_decode')) {
+ function utf8_decode($string) { return p\Php72::utf8_decode($string); }
+}
+if (!function_exists('spl_object_id')) {
+ function spl_object_id($object) { return p\Php72::spl_object_id($object); }
+}
+if (!function_exists('mb_ord')) {
+ function mb_ord($string, $encoding = null) { return p\Php72::mb_ord($string, $encoding); }
+}
+if (!function_exists('mb_chr')) {
+ function mb_chr($codepoint, $encoding = null) { return p\Php72::mb_chr($codepoint, $encoding); }
+}
+if (!function_exists('mb_scrub')) {
+ function mb_scrub($string, $encoding = null) { $encoding = null === $encoding ? mb_internal_encoding() : $encoding; return mb_convert_encoding($string, $encoding, $encoding); }
+}
diff --git a/vendor_prefixed/symfony/polyfill-php72/composer.json b/vendor_prefixed/symfony/polyfill-php72/composer.json
new file mode 100644
index 00000000..0a760b19
--- /dev/null
+++ b/vendor_prefixed/symfony/polyfill-php72/composer.json
@@ -0,0 +1,44 @@
+{
+ "name": "symfony\/polyfill-php72",
+ "type": "library",
+ "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
+ "keywords": [
+ "polyfill",
+ "shim",
+ "compatibility",
+ "portable"
+ ],
+ "homepage": "https:\/\/symfony.com",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https:\/\/symfony.com\/contributors"
+ }
+ ],
+ "require": {
+ "php": ">=7.1"
+ },
+ "autoload": {
+ "psr-4": {
+ "Pixelgrade\\Customify\\Vendor\\Symfony\\Polyfill\\Php72\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ]
+ },
+ "minimum-stability": "dev",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.22-dev"
+ },
+ "thanks": {
+ "name": "symfony\/polyfill",
+ "url": "https:\/\/github.com\/symfony\/polyfill"
+ }
+ }
+}
\ No newline at end of file
diff --git a/webpack-stats.json b/webpack-stats.json
new file mode 100644
index 00000000..ec8da41a
--- /dev/null
+++ b/webpack-stats.json
@@ -0,0 +1,3 @@
+Webpack Bundle Analyzer is started at http://127.0.0.1:8888
+Use Ctrl+C to close it
+{"hash":"41998f2c22ffa989006b","version":"5.27.2","time":6524,"builtAt":1617873891895,"publicPath":"auto","outputPath":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/dist/js","assetsByChunkName":{"customizer":["customizer.js"],"customizer.min":["customizer.min.js"],"customizerPreview":["customizer-preview.js"],"customizerPreview.min":["customizer-preview.min.js"],"customizerSearch":["customizer-search.js"],"customizerSearch.min":["customizer-search.min.js"],"darkMode":["dark-mode.js"],"darkMode.min":["dark-mode.min.js"],"settings":["settings.js"],"settings.min":["settings.min.js"]},"assets":[{"type":"asset","name":"customizer.js","size":588529,"emitted":false,"comparedForEmit":true,"cached":false,"info":{"javascriptModule":false,"size":588529},"chunkNames":["customizer"],"chunkIdHints":[],"auxiliaryChunkNames":[],"auxiliaryChunkIdHints":[],"related":{},"chunks":[290,861],"auxiliaryChunks":[],"isOverSizeLimit":true},{"type":"asset","name":"customizer.min.js","size":190302,"emitted":false,"comparedForEmit":true,"cached":false,"info":{"javascriptModule":false,"minimized":true,"related":{"license":"customizer.min.js.LICENSE.txt"},"size":190302},"chunkNames":["customizer.min"],"chunkIdHints":[],"auxiliaryChunkNames":[],"auxiliaryChunkIdHints":[],"filteredRelated":0,"related":[{"type":"license","name":"customizer.min.js.LICENSE.txt","size":2857,"emitted":false,"comparedForEmit":true,"cached":false,"info":{"extractedComments":true,"size":2857},"chunkNames":[],"chunkIdHints":[],"auxiliaryChunkNames":[],"auxiliaryChunkIdHints":[],"related":{},"chunks":[],"auxiliaryChunks":[],"isOverSizeLimit":false}],"chunks":[290,861],"auxiliaryChunks":[],"isOverSizeLimit":false},{"type":"asset","name":"customizer-preview.js","size":170879,"emitted":false,"comparedForEmit":true,"cached":false,"info":{"javascriptModule":false,"size":170879},"chunkNames":["customizerPreview"],"chunkIdHints":[],"auxiliaryChunkNames":[],"auxiliaryChunkIdHints":[],"related":{},"chunks":[104,527],"auxiliaryChunks":[],"isOverSizeLimit":false},{"type":"asset","name":"customizer-preview.min.js","size":39865,"emitted":false,"comparedForEmit":true,"cached":false,"info":{"javascriptModule":false,"minimized":true,"size":39865},"chunkNames":["customizerPreview.min"],"chunkIdHints":[],"auxiliaryChunkNames":[],"auxiliaryChunkIdHints":[],"related":{},"chunks":[104,527],"auxiliaryChunks":[],"isOverSizeLimit":false},{"type":"asset","name":"customizer-search.js","size":10185,"emitted":false,"comparedForEmit":true,"cached":false,"info":{"javascriptModule":false,"size":10185},"chunkNames":["customizerSearch"],"chunkIdHints":[],"auxiliaryChunkNames":[],"auxiliaryChunkIdHints":[],"related":{},"chunks":[354,597],"auxiliaryChunks":[],"isOverSizeLimit":false},{"type":"asset","name":"dark-mode.js","size":8170,"emitted":false,"comparedForEmit":true,"cached":false,"info":{"javascriptModule":false,"size":8170},"chunkNames":["darkMode"],"chunkIdHints":[],"auxiliaryChunkNames":[],"auxiliaryChunkIdHints":[],"related":{},"chunks":[81,628],"auxiliaryChunks":[],"isOverSizeLimit":false},{"type":"asset","name":"customizer-search.min.js","size":4380,"emitted":false,"comparedForEmit":true,"cached":false,"info":{"javascriptModule":false,"minimized":true,"size":4380},"chunkNames":["customizerSearch.min"],"chunkIdHints":[],"auxiliaryChunkNames":[],"auxiliaryChunkIdHints":[],"related":{},"chunks":[354,597],"auxiliaryChunks":[],"isOverSizeLimit":false},{"type":"asset","name":"dark-mode.min.js","size":3034,"emitted":false,"comparedForEmit":true,"cached":false,"info":{"javascriptModule":false,"minimized":true,"size":3034},"chunkNames":["darkMode.min"],"chunkIdHints":[],"auxiliaryChunkNames":[],"auxiliaryChunkIdHints":[],"related":{},"chunks":[81,628],"auxiliaryChunks":[],"isOverSizeLimit":false},{"type":"asset","name":"settings.js","size":1071,"emitted":false,"comparedForEmit":true,"cached":false,"info":{"javascriptModule":false,"size":1071},"chunkNames":["settings"],"chunkIdHints":[],"auxiliaryChunkNames":[],"auxiliaryChunkIdHints":[],"related":{},"chunks":[570,571],"auxiliaryChunks":[],"isOverSizeLimit":false},{"type":"asset","name":"settings.min.js","size":652,"emitted":false,"comparedForEmit":true,"cached":false,"info":{"javascriptModule":false,"minimized":true,"size":652},"chunkNames":["settings.min"],"chunkIdHints":[],"auxiliaryChunkNames":[],"auxiliaryChunkIdHints":[],"related":{},"chunks":[570,571],"auxiliaryChunks":[],"isOverSizeLimit":false}],"chunks":[{"rendered":true,"initial":true,"entry":true,"recorded":false,"size":5383,"sizes":{"javascript":4386,"runtime":997},"names":["darkMode"],"idHints":[],"runtime":["darkMode"],"files":["dark-mode.js"],"auxiliaryFiles":[],"hash":"86d694e1f92f1da02de0","childrenByOrder":{},"id":81,"siblings":[],"parents":[],"children":[],"modules":[{"type":"module","moduleType":"javascript/auto","layer":null,"size":4344,"sizes":{"javascript":4344},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","name":"./src/_js/dark-mode/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","index":390,"preOrderIndex":390,"index2":390,"postOrderIndex":390,"cacheable":true,"optional":false,"orphan":false,"dependent":false,"issuer":null,"issuerName":null,"issuerPath":null,"failed":false,"errors":0,"warnings":0,"profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":4299,"issuerId":null,"chunks":[81,628],"assets":[],"reasons":[{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/dark-mode/index.js","loc":"darkMode","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/dark-mode/index.js","loc":"darkMode.min","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null}],"usedExports":true,"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 13:0-22","ModuleConcatenation bailout: Cannot concat with external \"jQuery\": Module is not in strict mode"],"depth":0},{"type":"module","moduleType":"javascript/dynamic","layer":null,"size":42,"sizes":{"javascript":42},"built":true,"codeGenerated":true,"cached":false,"identifier":"external \"jQuery\"","name":"external \"jQuery\"","nameForCondition":null,"index":1,"preOrderIndex":1,"index2":0,"postOrderIndex":0,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3609,"issuerId":null,"chunks":[81,104,290,527,628,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"12:0-23","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"33:6-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:6-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"11:0-23","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"158:29-37","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"247:2-8","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"11:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"158:29-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"247:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"5:25-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"25:27-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"26:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"34:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"35:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"43:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"44:25-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"59:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"72:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"82:4-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"86:8-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"101:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"111:4-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"10:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"12:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:34-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:29-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"26:29-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"37:13-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"5:23-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"31:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"13:2-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"20:2-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"21:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"27:11-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"27:24-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"68:8-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"69:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"81:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"82:33-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"86:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"87:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"95:8-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"102:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"103:33-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"107:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"108:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"115:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"116:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"119:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"145:8-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:22-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"7:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"9:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"25:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"35:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"39:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"2:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"9:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"11:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"62:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"75:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:27-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"10:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"21:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:18-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"24:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"34:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","module":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","moduleName":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","module":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","moduleName":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"57:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","module":"./src/_js/customizer/fonts/utils/update-font-head-title.js","moduleName":"./src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","module":"./src/_js/customizer/fonts/utils/update-font-head-title.js","moduleName":"./src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","module":"./src/_js/customizer/fonts/utils/update-variant-field.js","moduleName":"./src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","module":"./src/_js/customizer/fonts/utils/update-variant-field.js","moduleName":"./src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"40:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"5:25-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"25:27-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"26:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"34:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"35:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"43:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"44:25-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"59:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"72:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"82:4-10","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"86:8-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"101:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"111:4-10","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"10:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"12:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:34-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:29-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"26:29-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"37:13-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"5:23-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"31:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"13:2-33","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"20:2-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"21:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"27:11-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"27:24-44","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"68:8-9","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"69:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"81:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"82:33-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"86:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"87:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"95:8-9","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"102:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"103:33-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"107:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"108:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"115:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"116:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"119:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"145:8-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:22-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"7:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"9:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"25:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"35:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"39:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"2:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"9:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"11:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"62:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"75:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:27-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"10:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"21:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:18-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"24:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"34:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"57:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"40:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"6:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:23-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"6:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:23-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"9:0-23","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"13:12-13","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:20-21","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:17-18","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"23:31-32","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"44:6-7","moduleId":4299,"resolvedModuleId":4299}],"usedExports":true,"providedExports":null,"optimizationBailout":["ModuleConcatenation bailout: Module is not in strict mode"],"depth":1},{"type":"module","moduleType":"runtime","layer":null,"size":302,"sizes":{"runtime":302},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/compat get default export","name":"webpack/runtime/compat get default export","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[81],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":313,"sizes":{"runtime":313},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/define property getters","name":"webpack/runtime/define property getters","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[81],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":103,"sizes":{"runtime":103},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/hasOwnProperty shorthand","name":"webpack/runtime/hasOwnProperty shorthand","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[81],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":279,"sizes":{"runtime":279},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/make namespace object","name":"webpack/runtime/make namespace object","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[81],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null}],"origins":[{"module":"","moduleIdentifier":"","moduleName":"","loc":"darkMode","request":"./src/_js/dark-mode/index.js"}]},{"rendered":true,"initial":true,"entry":true,"recorded":false,"size":152624,"sizes":{"javascript":151278,"runtime":1346},"names":["customizerPreview"],"idHints":[],"runtime":["customizerPreview"],"files":["customizer-preview.js"],"auxiliaryFiles":[],"hash":"2bcd34281633f1477bca","childrenByOrder":{},"id":104,"siblings":[],"parents":[],"children":[],"modules":[{"type":"module","moduleType":"javascript/auto","layer":null,"size":2223,"sizes":{"javascript":2223},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","index":371,"preOrderIndex":371,"index2":369,"postOrderIndex":369,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","issuerName":"./src/_js/customizer-preview/style.scss","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./src/_js/customizer-preview/style.scss","profile":{"total":352,"resolving":326,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":326,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":728,"resolving":3,"restoring":0,"building":725,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":946,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"2:12-140","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"9:17-24","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"13:15-29","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"2:12-140","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"9:17-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"13:15-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 3:0-84","ModuleConcatenation bailout: Module uses module.id"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1605,"sizes":{"javascript":1605},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/runtime/api.js","name":"./node_modules/css-loader/dist/runtime/api.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/runtime/api.js","index":126,"preOrderIndex":126,"index2":119,"postOrderIndex":119,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","issuerName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./src/_js/customizer-preview/style.scss","profile":{"total":352,"resolving":326,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":326,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","profile":{"total":728,"resolving":3,"restoring":0,"building":725,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":946}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3645,"issuerId":946,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../../node_modules/css-loader/dist/runtime/api.js","loc":"2:0-95","moduleId":946,"resolvedModuleId":946},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../node_modules/css-loader/dist/runtime/api.js","loc":"3:30-57","moduleId":946,"resolvedModuleId":946},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../../../../../node_modules/css-loader/dist/runtime/api.js","loc":"2:0-104","moduleId":3708,"resolvedModuleId":3708},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../../../../node_modules/css-loader/dist/runtime/api.js","loc":"3:30-57","moduleId":3708,"resolvedModuleId":3708},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../../../../../node_modules/css-loader/dist/runtime/api.js","loc":"2:0-104","moduleId":9805,"resolvedModuleId":9805},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../../../../node_modules/css-loader/dist/runtime/api.js","loc":"3:30-57","moduleId":9805,"resolvedModuleId":9805},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/runtime/api.js","module":"./node_modules/css-loader/dist/runtime/api.js","moduleName":"./node_modules/css-loader/dist/runtime/api.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/runtime/api.js","resolvedModule":"./node_modules/css-loader/dist/runtime/api.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"9:0-14","moduleId":3645,"resolvedModuleId":3645}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 9:0-14","Statement (ExpressionStatement) with side effects in source code at 9:0-66:2","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":210,"sizes":{"javascript":210},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","index":173,"preOrderIndex":173,"index2":156,"postOrderIndex":156,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","module":"./node_modules/lodash/_DataView.js","moduleName":"./node_modules/lodash/_DataView.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","resolvedModule":"./node_modules/lodash/_DataView.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":8552,"resolvedModuleId":8552},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_DataView","loc":"1:15-37","moduleId":4160,"resolvedModuleId":4160}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":747,"sizes":{"javascript":747},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","index":53,"preOrderIndex":53,"index2":53,"postOrderIndex":53,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","issuerName":"./node_modules/lodash/_mapCacheClear.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989,"issuerId":4785,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","module":"./node_modules/lodash/_mapCacheClear.js","moduleName":"./node_modules/lodash/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","resolvedModule":"./node_modules/lodash/_mapCacheClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Hash","loc":"1:11-29","moduleId":4785,"resolvedModuleId":4785}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":869,"sizes":{"javascript":869},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","index":66,"preOrderIndex":66,"index2":61,"postOrderIndex":61,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_ListCache","loc":"1:16-39","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","module":"./node_modules/lodash/_mapCacheClear.js","moduleName":"./node_modules/lodash/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","resolvedModule":"./node_modules/lodash/_mapCacheClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_ListCache","loc":"2:16-39","moduleId":4785,"resolvedModuleId":4785},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","module":"./node_modules/lodash/_stackClear.js","moduleName":"./node_modules/lodash/_stackClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","resolvedModule":"./node_modules/lodash/_stackClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_ListCache","loc":"1:16-39","moduleId":7465,"resolvedModuleId":7465},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","module":"./node_modules/lodash/_stackSet.js","moduleName":"./node_modules/lodash/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","resolvedModule":"./node_modules/lodash/_stackSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_ListCache","loc":"1:16-39","moduleId":4309,"resolvedModuleId":4309}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":195,"sizes":{"javascript":195},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","name":"./node_modules/lodash/_Map.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","index":74,"preOrderIndex":74,"index2":62,"postOrderIndex":62,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7071,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","module":"./node_modules/lodash/_Map.js","moduleName":"./node_modules/lodash/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","resolvedModule":"./node_modules/lodash/_Map.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":7071,"resolvedModuleId":7071},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Map","loc":"2:10-27","moduleId":4160,"resolvedModuleId":4160},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","module":"./node_modules/lodash/_mapCacheClear.js","moduleName":"./node_modules/lodash/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","resolvedModule":"./node_modules/lodash/_mapCacheClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Map","loc":"3:10-27","moduleId":4785,"resolvedModuleId":4785},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","module":"./node_modules/lodash/_stackSet.js","moduleName":"./node_modules/lodash/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","resolvedModule":"./node_modules/lodash/_stackSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Map","loc":"2:10-27","moduleId":4309,"resolvedModuleId":4309}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":869,"sizes":{"javascript":869},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","index":51,"preOrderIndex":51,"index2":70,"postOrderIndex":70,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","issuerName":"./node_modules/lodash/memoize.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369,"issuerId":8306,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","module":"./node_modules/lodash/_SetCache.js","moduleName":"./node_modules/lodash/_SetCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","resolvedModule":"./node_modules/lodash/_SetCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_MapCache","loc":"1:15-37","moduleId":8668,"resolvedModuleId":8668},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","module":"./node_modules/lodash/_stackSet.js","moduleName":"./node_modules/lodash/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","resolvedModule":"./node_modules/lodash/_stackSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_MapCache","loc":"3:15-37","moduleId":4309,"resolvedModuleId":4309},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","module":"./node_modules/lodash/memoize.js","moduleName":"./node_modules/lodash/memoize.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","resolvedModule":"./node_modules/lodash/memoize.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_MapCache","loc":"1:15-37","moduleId":8306,"resolvedModuleId":8306}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":207,"sizes":{"javascript":207},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","name":"./node_modules/lodash/_Promise.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","index":174,"preOrderIndex":174,"index2":157,"postOrderIndex":157,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3818,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","module":"./node_modules/lodash/_Promise.js","moduleName":"./node_modules/lodash/_Promise.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","resolvedModule":"./node_modules/lodash/_Promise.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":3818,"resolvedModuleId":3818},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Promise","loc":"3:14-35","moduleId":4160,"resolvedModuleId":4160}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":195,"sizes":{"javascript":195},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","name":"./node_modules/lodash/_Set.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","index":175,"preOrderIndex":175,"index2":158,"postOrderIndex":158,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8525,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","module":"./node_modules/lodash/_Set.js","moduleName":"./node_modules/lodash/_Set.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","resolvedModule":"./node_modules/lodash/_Set.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":8525,"resolvedModuleId":8525},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Set","loc":"4:10-27","moduleId":4160,"resolvedModuleId":4160}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":632,"sizes":{"javascript":632},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","name":"./node_modules/lodash/_SetCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","index":157,"preOrderIndex":157,"index2":142,"postOrderIndex":142,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","issuerName":"./node_modules/lodash/_equalArrays.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8668,"issuerId":7114,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","module":"./node_modules/lodash/_SetCache.js","moduleName":"./node_modules/lodash/_SetCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","resolvedModule":"./node_modules/lodash/_SetCache.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":8668,"resolvedModuleId":8668},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","module":"./node_modules/lodash/_equalArrays.js","moduleName":"./node_modules/lodash/_equalArrays.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","resolvedModule":"./node_modules/lodash/_equalArrays.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_SetCache","loc":"1:15-37","moduleId":7114,"resolvedModuleId":7114}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":734,"sizes":{"javascript":734},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","index":148,"preOrderIndex":148,"index2":139,"postOrderIndex":139,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","issuerName":"./node_modules/lodash/_baseIsMatch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384,"issuerId":2958,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Stack","loc":"1:12-31","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Stack","loc":"1:12-31","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","module":"./node_modules/lodash/_baseIsMatch.js","moduleName":"./node_modules/lodash/_baseIsMatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","resolvedModule":"./node_modules/lodash/_baseIsMatch.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Stack","loc":"1:12-31","moduleId":2958,"resolvedModuleId":2958}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-6:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":118,"sizes":{"javascript":118},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","name":"./node_modules/lodash/_Symbol.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","index":16,"preOrderIndex":16,"index2":7,"postOrderIndex":7,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","issuerName":"./node_modules/lodash/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","name":"./node_modules/lodash/_baseGetTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4239}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":2705,"issuerId":4239,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","module":"./node_modules/lodash/_Symbol.js","moduleName":"./node_modules/lodash/_Symbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","resolvedModule":"./node_modules/lodash/_Symbol.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":2705,"resolvedModuleId":2705},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","module":"./node_modules/lodash/_baseGetTag.js","moduleName":"./node_modules/lodash/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","resolvedModule":"./node_modules/lodash/_baseGetTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":4239,"resolvedModuleId":4239},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneSymbol.js","module":"./node_modules/lodash/_cloneSymbol.js","moduleName":"./node_modules/lodash/_cloneSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneSymbol.js","resolvedModule":"./node_modules/lodash/_cloneSymbol.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":419,"resolvedModuleId":419},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":8351,"resolvedModuleId":8351},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","module":"./node_modules/lodash/_getRawTag.js","moduleName":"./node_modules/lodash/_getRawTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","resolvedModule":"./node_modules/lodash/_getRawTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":9607,"resolvedModuleId":9607},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","module":"./node_modules/lodash/_isFlattenable.js","moduleName":"./node_modules/lodash/_isFlattenable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","resolvedModule":"./node_modules/lodash/_isFlattenable.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":7285,"resolvedModuleId":7285}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":130,"sizes":{"javascript":130},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","name":"./node_modules/lodash/_Uint8Array.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","index":163,"preOrderIndex":163,"index2":146,"postOrderIndex":146,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","issuerName":"./node_modules/lodash/_equalByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","name":"./node_modules/lodash/_equalByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8351}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":1149,"issuerId":8351,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","module":"./node_modules/lodash/_Uint8Array.js","moduleName":"./node_modules/lodash/_Uint8Array.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","resolvedModule":"./node_modules/lodash/_Uint8Array.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":1149,"resolvedModuleId":1149},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneArrayBuffer.js","module":"./node_modules/lodash/_cloneArrayBuffer.js","moduleName":"./node_modules/lodash/_cloneArrayBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneArrayBuffer.js","resolvedModule":"./node_modules/lodash/_cloneArrayBuffer.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Uint8Array","loc":"1:17-41","moduleId":4318,"resolvedModuleId":4318},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Uint8Array","loc":"2:17-41","moduleId":8351,"resolvedModuleId":8351}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":207,"sizes":{"javascript":207},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","name":"./node_modules/lodash/_WeakMap.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","index":176,"preOrderIndex":176,"index2":159,"postOrderIndex":159,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":577,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","module":"./node_modules/lodash/_WeakMap.js","moduleName":"./node_modules/lodash/_WeakMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","resolvedModule":"./node_modules/lodash/_WeakMap.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":577,"resolvedModuleId":577},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_WeakMap","loc":"5:14-35","moduleId":4160,"resolvedModuleId":4160}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":537,"sizes":{"javascript":537},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayEach.js","name":"./node_modules/lodash/_arrayEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayEach.js","index":5,"preOrderIndex":5,"index2":1,"postOrderIndex":1,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","issuerName":"./node_modules/lodash/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7412,"issuerId":4486,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayEach.js","module":"./node_modules/lodash/_arrayEach.js","moduleName":"./node_modules/lodash/_arrayEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayEach.js","resolvedModule":"./node_modules/lodash/_arrayEach.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":7412,"resolvedModuleId":7412},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayEach","loc":"2:16-39","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayEach","loc":"1:16-39","moduleId":4486,"resolvedModuleId":4486}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (ExpressionStatement) with side effects in source code at 22:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":632,"sizes":{"javascript":632},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayFilter.js","name":"./node_modules/lodash/_arrayFilter.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayFilter.js","index":170,"preOrderIndex":170,"index2":151,"postOrderIndex":151,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","issuerName":"./node_modules/lodash/_getSymbols.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","name":"./node_modules/lodash/_getSymbols.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9551}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4963,"issuerId":9551,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayFilter.js","module":"./node_modules/lodash/_arrayFilter.js","moduleName":"./node_modules/lodash/_arrayFilter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayFilter.js","resolvedModule":"./node_modules/lodash/_arrayFilter.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":4963,"resolvedModuleId":4963},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","module":"./node_modules/lodash/_getSymbols.js","moduleName":"./node_modules/lodash/_getSymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","resolvedModule":"./node_modules/lodash/_getSymbols.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayFilter","loc":"1:18-43","moduleId":9551,"resolvedModuleId":9551}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (ExpressionStatement) with side effects in source code at 25:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1778,"sizes":{"javascript":1778},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","name":"./node_modules/lodash/_arrayLikeKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","index":11,"preOrderIndex":11,"index2":23,"postOrderIndex":23,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","issuerName":"./node_modules/lodash/keys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","name":"./node_modules/lodash/keys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3674}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4636,"issuerId":3674,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"49:0-14","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","module":"./node_modules/lodash/keys.js","moduleName":"./node_modules/lodash/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","resolvedModule":"./node_modules/lodash/keys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayLikeKeys","loc":"1:20-47","moduleId":3674,"resolvedModuleId":3674},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","module":"./node_modules/lodash/keysIn.js","moduleName":"./node_modules/lodash/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","resolvedModule":"./node_modules/lodash/keysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayLikeKeys","loc":"1:20-47","moduleId":1704,"resolvedModuleId":1704}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 49:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-6:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":556,"sizes":{"javascript":556},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayMap.js","name":"./node_modules/lodash/_arrayMap.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayMap.js","index":83,"preOrderIndex":83,"index2":74,"postOrderIndex":74,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","issuerName":"./node_modules/lodash/_baseValues.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","name":"./node_modules/lodash/values.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2628},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","name":"./node_modules/lodash/_baseValues.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7415}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9932,"issuerId":7415,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayMap.js","module":"./node_modules/lodash/_arrayMap.js","moduleName":"./node_modules/lodash/_arrayMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayMap.js","resolvedModule":"./node_modules/lodash/_arrayMap.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":9932,"resolvedModuleId":9932},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayMap","loc":"2:15-37","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","module":"./node_modules/lodash/_baseValues.js","moduleName":"./node_modules/lodash/_baseValues.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","resolvedModule":"./node_modules/lodash/_baseValues.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayMap","loc":"1:15-37","moduleId":7415,"resolvedModuleId":7415},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","module":"./node_modules/lodash/map.js","moduleName":"./node_modules/lodash/map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","resolvedModule":"./node_modules/lodash/map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayMap","loc":"1:15-37","moduleId":5161,"resolvedModuleId":5161}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (ExpressionStatement) with side effects in source code at 21:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":437,"sizes":{"javascript":437},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayPush.js","name":"./node_modules/lodash/_arrayPush.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayPush.js","index":95,"preOrderIndex":95,"index2":89,"postOrderIndex":89,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","issuerName":"./node_modules/lodash/_baseFlatten.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","name":"./node_modules/lodash/flatten.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5564},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","name":"./node_modules/lodash/_baseFlatten.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1078}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":2488,"issuerId":1078,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayPush.js","module":"./node_modules/lodash/_arrayPush.js","moduleName":"./node_modules/lodash/_arrayPush.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayPush.js","resolvedModule":"./node_modules/lodash/_arrayPush.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":2488,"resolvedModuleId":2488},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","module":"./node_modules/lodash/_baseFlatten.js","moduleName":"./node_modules/lodash/_baseFlatten.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","resolvedModule":"./node_modules/lodash/_baseFlatten.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayPush","loc":"1:16-39","moduleId":1078,"resolvedModuleId":1078},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","module":"./node_modules/lodash/_baseGetAllKeys.js","moduleName":"./node_modules/lodash/_baseGetAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","resolvedModule":"./node_modules/lodash/_baseGetAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayPush","loc":"1:16-39","moduleId":8866,"resolvedModuleId":8866},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","module":"./node_modules/lodash/_getSymbolsIn.js","moduleName":"./node_modules/lodash/_getSymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","resolvedModule":"./node_modules/lodash/_getSymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayPush","loc":"1:16-39","moduleId":1442,"resolvedModuleId":1442}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (ExpressionStatement) with side effects in source code at 20:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":594,"sizes":{"javascript":594},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arraySome.js","name":"./node_modules/lodash/_arraySome.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arraySome.js","index":160,"preOrderIndex":160,"index2":143,"postOrderIndex":143,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","issuerName":"./node_modules/lodash/_equalArrays.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2908,"issuerId":7114,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arraySome.js","module":"./node_modules/lodash/_arraySome.js","moduleName":"./node_modules/lodash/_arraySome.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arraySome.js","resolvedModule":"./node_modules/lodash/_arraySome.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":2908,"resolvedModuleId":2908},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","module":"./node_modules/lodash/_equalArrays.js","moduleName":"./node_modules/lodash/_equalArrays.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","resolvedModule":"./node_modules/lodash/_equalArrays.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arraySome","loc":"2:16-39","moduleId":7114,"resolvedModuleId":7114}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (ExpressionStatement) with side effects in source code at 23:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":487,"sizes":{"javascript":487},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","name":"./node_modules/lodash/_assocIndexOf.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","index":69,"preOrderIndex":69,"index2":56,"postOrderIndex":56,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","issuerName":"./node_modules/lodash/_listCacheDelete.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","name":"./node_modules/lodash/_listCacheDelete.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4125}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8470,"issuerId":4125,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","module":"./node_modules/lodash/_assocIndexOf.js","moduleName":"./node_modules/lodash/_assocIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","resolvedModule":"./node_modules/lodash/_assocIndexOf.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":8470,"resolvedModuleId":8470},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","module":"./node_modules/lodash/_listCacheDelete.js","moduleName":"./node_modules/lodash/_listCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","resolvedModule":"./node_modules/lodash/_listCacheDelete.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assocIndexOf","loc":"1:19-45","moduleId":4125,"resolvedModuleId":4125},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","module":"./node_modules/lodash/_listCacheGet.js","moduleName":"./node_modules/lodash/_listCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","resolvedModule":"./node_modules/lodash/_listCacheGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assocIndexOf","loc":"1:19-45","moduleId":2117,"resolvedModuleId":2117},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","module":"./node_modules/lodash/_listCacheHas.js","moduleName":"./node_modules/lodash/_listCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","resolvedModule":"./node_modules/lodash/_listCacheHas.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assocIndexOf","loc":"1:19-45","moduleId":7529,"resolvedModuleId":7529},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","module":"./node_modules/lodash/_listCacheSet.js","moduleName":"./node_modules/lodash/_listCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","resolvedModule":"./node_modules/lodash/_listCacheSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assocIndexOf","loc":"1:19-45","moduleId":4705,"resolvedModuleId":4705}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-25","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":455,"sizes":{"javascript":455},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","index":6,"preOrderIndex":6,"index2":34,"postOrderIndex":34,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","issuerName":"./node_modules/lodash/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881,"issuerId":4486,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","module":"./node_modules/lodash/_baseEach.js","moduleName":"./node_modules/lodash/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","resolvedModule":"./node_modules/lodash/_baseEach.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":9881,"resolvedModuleId":9881},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","module":"./node_modules/lodash/_baseMap.js","moduleName":"./node_modules/lodash/_baseMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","resolvedModule":"./node_modules/lodash/_baseMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseEach","loc":"1:15-37","moduleId":9199,"resolvedModuleId":9199},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseEach","loc":"2:15-37","moduleId":4486,"resolvedModuleId":4486}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:50","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":766,"sizes":{"javascript":766},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFindIndex.js","name":"./node_modules/lodash/_baseFindIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFindIndex.js","index":376,"preOrderIndex":376,"index2":372,"postOrderIndex":372,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","issuerName":"./node_modules/lodash/findIndex.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","name":"./node_modules/lodash/findIndex.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":998}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1848,"issuerId":998,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFindIndex.js","module":"./node_modules/lodash/_baseFindIndex.js","moduleName":"./node_modules/lodash/_baseFindIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFindIndex.js","resolvedModule":"./node_modules/lodash/_baseFindIndex.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"24:0-14","moduleId":1848,"resolvedModuleId":1848},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","module":"./node_modules/lodash/_baseIndexOf.js","moduleName":"./node_modules/lodash/_baseIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","resolvedModule":"./node_modules/lodash/_baseIndexOf.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseFindIndex","loc":"1:20-47","moduleId":2118,"resolvedModuleId":2118},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","module":"./node_modules/lodash/findIndex.js","moduleName":"./node_modules/lodash/findIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","resolvedModule":"./node_modules/lodash/findIndex.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseFindIndex","loc":"1:20-47","moduleId":998,"resolvedModuleId":998}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 24:0-14","Statement (ExpressionStatement) with side effects in source code at 24:0-31","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":593,"sizes":{"javascript":593},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","name":"./node_modules/lodash/_baseFor.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","index":8,"preOrderIndex":8,"index2":3,"postOrderIndex":3,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","issuerName":"./node_modules/lodash/_baseForOwn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","name":"./node_modules/lodash/_baseForOwn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7816}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8483,"issuerId":7816,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","module":"./node_modules/lodash/_baseFor.js","moduleName":"./node_modules/lodash/_baseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","resolvedModule":"./node_modules/lodash/_baseFor.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":8483,"resolvedModuleId":8483},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","module":"./node_modules/lodash/_baseForOwn.js","moduleName":"./node_modules/lodash/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","resolvedModule":"./node_modules/lodash/_baseForOwn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseFor","loc":"1:14-35","moduleId":7816,"resolvedModuleId":7816}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-48","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":456,"sizes":{"javascript":456},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","name":"./node_modules/lodash/_baseForOwn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","index":7,"preOrderIndex":7,"index2":32,"postOrderIndex":32,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","issuerName":"./node_modules/lodash/_baseEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7816,"issuerId":9881,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","module":"./node_modules/lodash/_baseEach.js","moduleName":"./node_modules/lodash/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","resolvedModule":"./node_modules/lodash/_baseEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseForOwn","loc":"1:17-41","moduleId":9881,"resolvedModuleId":9881},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","module":"./node_modules/lodash/_baseForOwn.js","moduleName":"./node_modules/lodash/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","resolvedModule":"./node_modules/lodash/_baseForOwn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":7816,"resolvedModuleId":7816},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","module":"./node_modules/lodash/forOwn.js","moduleName":"./node_modules/lodash/forOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","resolvedModule":"./node_modules/lodash/forOwn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseForOwn","loc":"1:17-41","moduleId":2525,"resolvedModuleId":2525}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":616,"sizes":{"javascript":616},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","name":"./node_modules/lodash/_baseGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","index":44,"preOrderIndex":44,"index2":79,"postOrderIndex":79,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","issuerName":"./node_modules/lodash/_basePickBy.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","name":"./node_modules/lodash/_basePickBy.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3012}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":7786,"issuerId":3012,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","module":"./node_modules/lodash/_baseGet.js","moduleName":"./node_modules/lodash/_baseGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","resolvedModule":"./node_modules/lodash/_baseGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"24:0-14","moduleId":7786,"resolvedModuleId":7786},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","module":"./node_modules/lodash/_basePickBy.js","moduleName":"./node_modules/lodash/_basePickBy.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","resolvedModule":"./node_modules/lodash/_basePickBy.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGet","loc":"1:14-35","moduleId":3012,"resolvedModuleId":3012},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","module":"./node_modules/lodash/_basePropertyDeep.js","moduleName":"./node_modules/lodash/_basePropertyDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","resolvedModule":"./node_modules/lodash/_basePropertyDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGet","loc":"1:14-35","moduleId":9152,"resolvedModuleId":9152},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","module":"./node_modules/lodash/get.js","moduleName":"./node_modules/lodash/get.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","resolvedModule":"./node_modules/lodash/get.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGet","loc":"1:14-35","moduleId":7361,"resolvedModuleId":7361}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 24:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":739,"sizes":{"javascript":739},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","name":"./node_modules/lodash/_baseGetAllKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","index":168,"preOrderIndex":168,"index2":150,"postOrderIndex":150,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","issuerName":"./node_modules/lodash/_getAllKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":8866,"issuerId":8234,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","module":"./node_modules/lodash/_baseGetAllKeys.js","moduleName":"./node_modules/lodash/_baseGetAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","resolvedModule":"./node_modules/lodash/_baseGetAllKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":8866,"resolvedModuleId":8866},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","module":"./node_modules/lodash/_getAllKeys.js","moduleName":"./node_modules/lodash/_getAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","resolvedModule":"./node_modules/lodash/_getAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetAllKeys","loc":"1:21-49","moduleId":8234,"resolvedModuleId":8234},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","module":"./node_modules/lodash/_getAllKeysIn.js","moduleName":"./node_modules/lodash/_getAllKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","resolvedModule":"./node_modules/lodash/_getAllKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetAllKeys","loc":"1:21-49","moduleId":6904,"resolvedModuleId":6904}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":792,"sizes":{"javascript":792},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","name":"./node_modules/lodash/_baseGetTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","index":15,"preOrderIndex":15,"index2":10,"postOrderIndex":10,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","issuerName":"./node_modules/lodash/isString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4239,"issuerId":7037,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","module":"./node_modules/lodash/_baseGetTag.js","moduleName":"./node_modules/lodash/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","resolvedModule":"./node_modules/lodash/_baseGetTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"28:0-14","moduleId":4239,"resolvedModuleId":4239},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","module":"./node_modules/lodash/_baseIsArguments.js","moduleName":"./node_modules/lodash/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","resolvedModule":"./node_modules/lodash/_baseIsArguments.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":9454,"resolvedModuleId":9454},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","module":"./node_modules/lodash/_baseIsTypedArray.js","moduleName":"./node_modules/lodash/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash/_baseIsTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":8749,"resolvedModuleId":8749},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"6:17-41","moduleId":4160,"resolvedModuleId":4160},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","module":"./node_modules/lodash/isFunction.js","moduleName":"./node_modules/lodash/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","resolvedModule":"./node_modules/lodash/isFunction.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":3560,"resolvedModuleId":3560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","module":"./node_modules/lodash/isNumber.js","moduleName":"./node_modules/lodash/isNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","resolvedModule":"./node_modules/lodash/isNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":1763,"resolvedModuleId":1763},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","module":"./node_modules/lodash/isPlainObject.js","moduleName":"./node_modules/lodash/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","resolvedModule":"./node_modules/lodash/isPlainObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":8630,"resolvedModuleId":8630},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","module":"./node_modules/lodash/isString.js","moduleName":"./node_modules/lodash/isString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","resolvedModule":"./node_modules/lodash/isString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":7037,"resolvedModuleId":7037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","module":"./node_modules/lodash/isSymbol.js","moduleName":"./node_modules/lodash/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","resolvedModule":"./node_modules/lodash/isSymbol.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":3448,"resolvedModuleId":3448}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 28:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:50","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":559,"sizes":{"javascript":559},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHas.js","name":"./node_modules/lodash/_baseHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHas.js","index":380,"preOrderIndex":380,"index2":377,"postOrderIndex":377,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","issuerName":"./node_modules/lodash/has.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8565,"issuerId":8721,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHas.js","module":"./node_modules/lodash/_baseHas.js","moduleName":"./node_modules/lodash/_baseHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHas.js","resolvedModule":"./node_modules/lodash/_baseHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":8565,"resolvedModuleId":8565},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","module":"./node_modules/lodash/has.js","moduleName":"./node_modules/lodash/has.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","resolvedModule":"./node_modules/lodash/has.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseHas","loc":"1:14-35","moduleId":8721,"resolvedModuleId":8721}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":374,"sizes":{"javascript":374},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHasIn.js","name":"./node_modules/lodash/_baseHasIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHasIn.js","index":90,"preOrderIndex":90,"index2":85,"postOrderIndex":85,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","issuerName":"./node_modules/lodash/hasIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","name":"./node_modules/lodash/hasIn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":9095}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":13,"issuerId":9095,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHasIn.js","module":"./node_modules/lodash/_baseHasIn.js","moduleName":"./node_modules/lodash/_baseHasIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHasIn.js","resolvedModule":"./node_modules/lodash/_baseHasIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"13:0-14","moduleId":13,"resolvedModuleId":13},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","module":"./node_modules/lodash/hasIn.js","moduleName":"./node_modules/lodash/hasIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","resolvedModule":"./node_modules/lodash/hasIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseHasIn","loc":"1:16-39","moduleId":9095,"resolvedModuleId":9095}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 13:0-14","Statement (ExpressionStatement) with side effects in source code at 13:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":659,"sizes":{"javascript":659},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","name":"./node_modules/lodash/_baseIndexOf.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","index":384,"preOrderIndex":384,"index2":383,"postOrderIndex":383,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","issuerName":"./node_modules/lodash/includes.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2118,"issuerId":4721,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","module":"./node_modules/lodash/_baseIndexOf.js","moduleName":"./node_modules/lodash/_baseIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","resolvedModule":"./node_modules/lodash/_baseIndexOf.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":2118,"resolvedModuleId":2118},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","module":"./node_modules/lodash/includes.js","moduleName":"./node_modules/lodash/includes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","resolvedModule":"./node_modules/lodash/includes.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIndexOf","loc":"1:18-43","moduleId":4721,"resolvedModuleId":4721}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:48","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":488,"sizes":{"javascript":488},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","name":"./node_modules/lodash/_baseIsArguments.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","index":14,"preOrderIndex":14,"index2":12,"postOrderIndex":12,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","issuerName":"./node_modules/lodash/isArguments.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","name":"./node_modules/lodash/isArguments.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":5694}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9454,"issuerId":5694,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","module":"./node_modules/lodash/_baseIsArguments.js","moduleName":"./node_modules/lodash/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","resolvedModule":"./node_modules/lodash/_baseIsArguments.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":9454,"resolvedModuleId":9454},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","module":"./node_modules/lodash/isArguments.js","moduleName":"./node_modules/lodash/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","resolvedModule":"./node_modules/lodash/isArguments.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsArguments","loc":"1:22-51","moduleId":5694,"resolvedModuleId":5694}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1019,"sizes":{"javascript":1019},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","index":154,"preOrderIndex":154,"index2":162,"postOrderIndex":162,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","issuerName":"./node_modules/lodash/_baseMatchesProperty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432}],"failed":false,"errors":0,"warnings":0,"profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939,"issuerId":6432,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","module":"./node_modules/lodash/_baseIsEqual.js","moduleName":"./node_modules/lodash/_baseIsEqual.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","resolvedModule":"./node_modules/lodash/_baseIsEqual.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"28:0-14","moduleId":939,"resolvedModuleId":939},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","module":"./node_modules/lodash/_baseIsMatch.js","moduleName":"./node_modules/lodash/_baseIsMatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","resolvedModule":"./node_modules/lodash/_baseIsMatch.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsEqual","loc":"2:18-43","moduleId":2958,"resolvedModuleId":2958},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsEqual","loc":"1:18-43","moduleId":6432,"resolvedModuleId":6432}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 28:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3010,"sizes":{"javascript":3010},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","index":155,"preOrderIndex":155,"index2":161,"postOrderIndex":161,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","issuerName":"./node_modules/lodash/_baseIsEqual.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492,"issuerId":939,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","module":"./node_modules/lodash/_baseIsEqual.js","moduleName":"./node_modules/lodash/_baseIsEqual.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","resolvedModule":"./node_modules/lodash/_baseIsEqual.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsEqualDeep","loc":"1:22-51","moduleId":939,"resolvedModuleId":939},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"83:0-14","moduleId":2492,"resolvedModuleId":2492}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 83:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-8:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1765,"sizes":{"javascript":1765},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","index":147,"preOrderIndex":147,"index2":163,"postOrderIndex":163,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","issuerName":"./node_modules/lodash/_baseMatches.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958,"issuerId":1573,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","module":"./node_modules/lodash/_baseIsMatch.js","moduleName":"./node_modules/lodash/_baseIsMatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","resolvedModule":"./node_modules/lodash/_baseIsMatch.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"62:0-14","moduleId":2958,"resolvedModuleId":2958},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","module":"./node_modules/lodash/_baseMatches.js","moduleName":"./node_modules/lodash/_baseMatches.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","resolvedModule":"./node_modules/lodash/_baseMatches.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsMatch","loc":"1:18-43","moduleId":1573,"resolvedModuleId":1573}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 62:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":296,"sizes":{"javascript":296},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNaN.js","name":"./node_modules/lodash/_baseIsNaN.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNaN.js","index":385,"preOrderIndex":385,"index2":381,"postOrderIndex":381,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","issuerName":"./node_modules/lodash/_baseIndexOf.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","name":"./node_modules/lodash/_baseIndexOf.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2118}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2722,"issuerId":2118,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","module":"./node_modules/lodash/_baseIndexOf.js","moduleName":"./node_modules/lodash/_baseIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","resolvedModule":"./node_modules/lodash/_baseIndexOf.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsNaN","loc":"2:16-39","moduleId":2118,"resolvedModuleId":2118},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNaN.js","module":"./node_modules/lodash/_baseIsNaN.js","moduleName":"./node_modules/lodash/_baseIsNaN.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNaN.js","resolvedModule":"./node_modules/lodash/_baseIsNaN.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"12:0-14","moduleId":2722,"resolvedModuleId":2722}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 12:0-14","Statement (ExpressionStatement) with side effects in source code at 12:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1417,"sizes":{"javascript":1417},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","name":"./node_modules/lodash/_baseIsNative.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","index":57,"preOrderIndex":57,"index2":44,"postOrderIndex":44,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","issuerName":"./node_modules/lodash/_getNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8458,"issuerId":852,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"47:0-14","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","module":"./node_modules/lodash/_getNative.js","moduleName":"./node_modules/lodash/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","resolvedModule":"./node_modules/lodash/_getNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsNative","loc":"1:19-45","moduleId":852,"resolvedModuleId":852}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 47:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2222,"sizes":{"javascript":2222},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","name":"./node_modules/lodash/_baseIsTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","index":27,"preOrderIndex":27,"index2":19,"postOrderIndex":19,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","issuerName":"./node_modules/lodash/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","name":"./node_modules/lodash/isTypedArray.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6719}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8749,"issuerId":6719,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","module":"./node_modules/lodash/_baseIsTypedArray.js","moduleName":"./node_modules/lodash/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash/_baseIsTypedArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"60:0-14","moduleId":8749,"resolvedModuleId":8749},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","module":"./node_modules/lodash/isTypedArray.js","moduleName":"./node_modules/lodash/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","resolvedModule":"./node_modules/lodash/isTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsTypedArray","loc":"1:23-53","moduleId":6719,"resolvedModuleId":6719}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 60:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":895,"sizes":{"javascript":895},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","index":145,"preOrderIndex":145,"index2":173,"postOrderIndex":173,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","issuerName":"./node_modules/lodash/_createFind.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206,"issuerId":7740,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"31:0-14","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","module":"./node_modules/lodash/_createFind.js","moduleName":"./node_modules/lodash/_createFind.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","resolvedModule":"./node_modules/lodash/_createFind.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIteratee","loc":"1:19-45","moduleId":7740,"resolvedModuleId":7740},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","module":"./node_modules/lodash/findIndex.js","moduleName":"./node_modules/lodash/findIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","resolvedModule":"./node_modules/lodash/findIndex.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIteratee","loc":"2:19-45","moduleId":998,"resolvedModuleId":998},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","module":"./node_modules/lodash/map.js","moduleName":"./node_modules/lodash/map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","resolvedModule":"./node_modules/lodash/map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIteratee","loc":"2:19-45","moduleId":5161,"resolvedModuleId":5161}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 31:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":776,"sizes":{"javascript":776},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","name":"./node_modules/lodash/_baseKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","index":31,"preOrderIndex":31,"index2":27,"postOrderIndex":27,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":280,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","module":"./node_modules/lodash/_baseKeys.js","moduleName":"./node_modules/lodash/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","resolvedModule":"./node_modules/lodash/_baseKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":280,"resolvedModuleId":280},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseKeys","loc":"1:15-37","moduleId":1609,"resolvedModuleId":1609},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","module":"./node_modules/lodash/keys.js","moduleName":"./node_modules/lodash/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","resolvedModule":"./node_modules/lodash/keys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseKeys","loc":"2:15-37","moduleId":3674,"resolvedModuleId":3674}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":710,"sizes":{"javascript":710},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","index":146,"preOrderIndex":146,"index2":167,"postOrderIndex":167,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","issuerName":"./node_modules/lodash/_baseIteratee.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573,"issuerId":7206,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseMatches","loc":"1:18-43","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","module":"./node_modules/lodash/_baseMatches.js","moduleName":"./node_modules/lodash/_baseMatches.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","resolvedModule":"./node_modules/lodash/_baseMatches.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":1573,"resolvedModuleId":1573}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:68","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1129,"sizes":{"javascript":1129},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","index":180,"preOrderIndex":180,"index2":169,"postOrderIndex":169,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","issuerName":"./node_modules/lodash/_baseIteratee.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432,"issuerId":7206,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseMatchesProperty","loc":"2:26-59","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"33:0-14","moduleId":6432,"resolvedModuleId":6432}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 33:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-7:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":360,"sizes":{"javascript":360},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseProperty.js","name":"./node_modules/lodash/_baseProperty.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseProperty.js","index":183,"preOrderIndex":183,"index2":170,"postOrderIndex":170,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","issuerName":"./node_modules/lodash/property.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","name":"./node_modules/lodash/property.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9601}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":371,"issuerId":9601,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseProperty.js","module":"./node_modules/lodash/_baseProperty.js","moduleName":"./node_modules/lodash/_baseProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseProperty.js","resolvedModule":"./node_modules/lodash/_baseProperty.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":371,"resolvedModuleId":371},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseProperty","loc":"1:19-45","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":391,"sizes":{"javascript":391},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","name":"./node_modules/lodash/_basePropertyDeep.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","index":184,"preOrderIndex":184,"index2":171,"postOrderIndex":171,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","issuerName":"./node_modules/lodash/property.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","name":"./node_modules/lodash/property.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9601}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9152,"issuerId":9601,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","module":"./node_modules/lodash/_basePropertyDeep.js","moduleName":"./node_modules/lodash/_basePropertyDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","resolvedModule":"./node_modules/lodash/_basePropertyDeep.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":9152,"resolvedModuleId":9152},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_basePropertyDeep","loc":"2:23-53","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":504,"sizes":{"javascript":504},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTimes.js","name":"./node_modules/lodash/_baseTimes.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTimes.js","index":12,"preOrderIndex":12,"index2":4,"postOrderIndex":4,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","issuerName":"./node_modules/lodash/_arrayLikeKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","name":"./node_modules/lodash/keys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3674},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","name":"./node_modules/lodash/_arrayLikeKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4636}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2545,"issuerId":4636,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseTimes","loc":"1:16-39","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTimes.js","module":"./node_modules/lodash/_baseTimes.js","moduleName":"./node_modules/lodash/_baseTimes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTimes.js","resolvedModule":"./node_modules/lodash/_baseTimes.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":2545,"resolvedModuleId":2545}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (ExpressionStatement) with side effects in source code at 20:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1154,"sizes":{"javascript":1154},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","name":"./node_modules/lodash/_baseToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","index":82,"preOrderIndex":82,"index2":75,"postOrderIndex":75,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","issuerName":"./node_modules/lodash/toString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","name":"./node_modules/lodash/toString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9833}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":531,"issuerId":9833,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","module":"./node_modules/lodash/toString.js","moduleName":"./node_modules/lodash/toString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","resolvedModule":"./node_modules/lodash/toString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseToString","loc":"1:19-45","moduleId":9833,"resolvedModuleId":9833}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":444,"sizes":{"javascript":444},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","name":"./node_modules/lodash/_baseTrim.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","index":113,"preOrderIndex":113,"index2":110,"postOrderIndex":110,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","issuerName":"./node_modules/lodash/toNumber.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","name":"./node_modules/lodash/toNumber.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":4841}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7561,"issuerId":4841,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","module":"./node_modules/lodash/_baseTrim.js","moduleName":"./node_modules/lodash/_baseTrim.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","resolvedModule":"./node_modules/lodash/_baseTrim.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":7561,"resolvedModuleId":7561},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseTrim","loc":"1:15-37","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-52","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":332,"sizes":{"javascript":332},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseUnary.js","name":"./node_modules/lodash/_baseUnary.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseUnary.js","index":29,"preOrderIndex":29,"index2":20,"postOrderIndex":20,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","issuerName":"./node_modules/lodash/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","name":"./node_modules/lodash/isTypedArray.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6719}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":7518,"issuerId":6719,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseUnary.js","module":"./node_modules/lodash/_baseUnary.js","moduleName":"./node_modules/lodash/_baseUnary.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseUnary.js","resolvedModule":"./node_modules/lodash/_baseUnary.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":7518,"resolvedModuleId":7518},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","module":"./node_modules/lodash/isMap.js","moduleName":"./node_modules/lodash/isMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","resolvedModule":"./node_modules/lodash/isMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseUnary","loc":"2:16-39","moduleId":6688,"resolvedModuleId":6688},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","module":"./node_modules/lodash/isSet.js","moduleName":"./node_modules/lodash/isSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","resolvedModule":"./node_modules/lodash/isSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseUnary","loc":"2:16-39","moduleId":2928,"resolvedModuleId":2928},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","module":"./node_modules/lodash/isTypedArray.js","moduleName":"./node_modules/lodash/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","resolvedModule":"./node_modules/lodash/isTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseUnary","loc":"2:16-39","moduleId":6719,"resolvedModuleId":6719}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":534,"sizes":{"javascript":534},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","name":"./node_modules/lodash/_baseValues.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","index":388,"preOrderIndex":388,"index2":384,"postOrderIndex":384,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","issuerName":"./node_modules/lodash/values.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","name":"./node_modules/lodash/values.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2628}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7415,"issuerId":2628,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","module":"./node_modules/lodash/_baseValues.js","moduleName":"./node_modules/lodash/_baseValues.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","resolvedModule":"./node_modules/lodash/_baseValues.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":7415,"resolvedModuleId":7415},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","module":"./node_modules/lodash/values.js","moduleName":"./node_modules/lodash/values.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","resolvedModule":"./node_modules/lodash/values.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseValues","loc":"1:17-41","moduleId":2628,"resolvedModuleId":2628}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":337,"sizes":{"javascript":337},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cacheHas.js","name":"./node_modules/lodash/_cacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cacheHas.js","index":161,"preOrderIndex":161,"index2":144,"postOrderIndex":144,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","issuerName":"./node_modules/lodash/_equalArrays.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4757,"issuerId":7114,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cacheHas.js","module":"./node_modules/lodash/_cacheHas.js","moduleName":"./node_modules/lodash/_cacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cacheHas.js","resolvedModule":"./node_modules/lodash/_cacheHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"13:0-14","moduleId":4757,"resolvedModuleId":4757},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","module":"./node_modules/lodash/_equalArrays.js","moduleName":"./node_modules/lodash/_equalArrays.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","resolvedModule":"./node_modules/lodash/_equalArrays.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cacheHas","loc":"3:15-37","moduleId":7114,"resolvedModuleId":7114}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 13:0-14","Statement (ExpressionStatement) with side effects in source code at 13:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":326,"sizes":{"javascript":326},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","name":"./node_modules/lodash/_castFunction.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","index":39,"preOrderIndex":39,"index2":36,"postOrderIndex":36,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","issuerName":"./node_modules/lodash/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4290,"issuerId":4486,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","module":"./node_modules/lodash/_castFunction.js","moduleName":"./node_modules/lodash/_castFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","resolvedModule":"./node_modules/lodash/_castFunction.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":4290,"resolvedModuleId":4290},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castFunction","loc":"3:19-45","moduleId":4486,"resolvedModuleId":4486},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","module":"./node_modules/lodash/forOwn.js","moduleName":"./node_modules/lodash/forOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","resolvedModule":"./node_modules/lodash/forOwn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castFunction","loc":"2:19-45","moduleId":2525,"resolvedModuleId":2525}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":569,"sizes":{"javascript":569},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","index":45,"preOrderIndex":45,"index2":77,"postOrderIndex":77,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","issuerName":"./node_modules/lodash/_hasPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811,"issuerId":222,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","module":"./node_modules/lodash/_baseGet.js","moduleName":"./node_modules/lodash/_baseGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","resolvedModule":"./node_modules/lodash/_baseGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castPath","loc":"1:15-37","moduleId":7786,"resolvedModuleId":7786},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","module":"./node_modules/lodash/_basePickBy.js","moduleName":"./node_modules/lodash/_basePickBy.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","resolvedModule":"./node_modules/lodash/_basePickBy.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castPath","loc":"3:15-37","moduleId":3012,"resolvedModuleId":3012},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castPath","loc":"2:15-37","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castPath","loc":"1:15-37","moduleId":222,"resolvedModuleId":222}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":157,"sizes":{"javascript":157},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","name":"./node_modules/lodash/_coreJsData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","index":59,"preOrderIndex":59,"index2":41,"postOrderIndex":41,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","issuerName":"./node_modules/lodash/_isMasked.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","name":"./node_modules/lodash/_baseIsNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8458},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","name":"./node_modules/lodash/_isMasked.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5346}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4429,"issuerId":5346,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","module":"./node_modules/lodash/_coreJsData.js","moduleName":"./node_modules/lodash/_coreJsData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","resolvedModule":"./node_modules/lodash/_coreJsData.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":4429,"resolvedModuleId":4429},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","module":"./node_modules/lodash/_isMasked.js","moduleName":"./node_modules/lodash/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","resolvedModule":"./node_modules/lodash/_isMasked.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_coreJsData","loc":"1:17-41","moduleId":5346,"resolvedModuleId":5346}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":886,"sizes":{"javascript":886},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","name":"./node_modules/lodash/_createBaseEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","index":38,"preOrderIndex":38,"index2":33,"postOrderIndex":33,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","issuerName":"./node_modules/lodash/_baseEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9291,"issuerId":9881,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","module":"./node_modules/lodash/_baseEach.js","moduleName":"./node_modules/lodash/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","resolvedModule":"./node_modules/lodash/_baseEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_createBaseEach","loc":"2:21-49","moduleId":9881,"resolvedModuleId":9881},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","module":"./node_modules/lodash/_createBaseEach.js","moduleName":"./node_modules/lodash/_createBaseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","resolvedModule":"./node_modules/lodash/_createBaseEach.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":9291,"resolvedModuleId":9291}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-43","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":648,"sizes":{"javascript":648},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseFor.js","name":"./node_modules/lodash/_createBaseFor.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseFor.js","index":9,"preOrderIndex":9,"index2":2,"postOrderIndex":2,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","issuerName":"./node_modules/lodash/_baseFor.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","name":"./node_modules/lodash/_baseForOwn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7816},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","name":"./node_modules/lodash/_baseFor.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8483}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5063,"issuerId":8483,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","module":"./node_modules/lodash/_baseFor.js","moduleName":"./node_modules/lodash/_baseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","resolvedModule":"./node_modules/lodash/_baseFor.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_createBaseFor","loc":"1:20-47","moduleId":8483,"resolvedModuleId":8483},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseFor.js","module":"./node_modules/lodash/_createBaseFor.js","moduleName":"./node_modules/lodash/_createBaseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseFor.js","resolvedModule":"./node_modules/lodash/_createBaseFor.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":5063,"resolvedModuleId":5063}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (ExpressionStatement) with side effects in source code at 25:0-31","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":853,"sizes":{"javascript":853},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","index":374,"preOrderIndex":374,"index2":371,"postOrderIndex":371,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","issuerName":"./node_modules/lodash/find.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740,"issuerId":3311,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","module":"./node_modules/lodash/_createFind.js","moduleName":"./node_modules/lodash/_createFind.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","resolvedModule":"./node_modules/lodash/_createFind.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":7740,"resolvedModuleId":7740},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","module":"./node_modules/lodash/find.js","moduleName":"./node_modules/lodash/find.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","resolvedModule":"./node_modules/lodash/find.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_createFind","loc":"1:17-41","moduleId":3311,"resolvedModuleId":3311}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2662,"sizes":{"javascript":2662},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","index":156,"preOrderIndex":156,"index2":145,"postOrderIndex":145,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","issuerName":"./node_modules/lodash/_baseIsEqualDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114,"issuerId":2492,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_equalArrays","loc":"2:18-43","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","module":"./node_modules/lodash/_equalArrays.js","moduleName":"./node_modules/lodash/_equalArrays.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","resolvedModule":"./node_modules/lodash/_equalArrays.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"84:0-14","moduleId":7114,"resolvedModuleId":7114},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_equalArrays","loc":"4:18-43","moduleId":8351,"resolvedModuleId":8351}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 84:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3746,"sizes":{"javascript":3746},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","name":"./node_modules/lodash/_equalByTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","index":162,"preOrderIndex":162,"index2":149,"postOrderIndex":149,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","issuerName":"./node_modules/lodash/_baseIsEqualDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8351,"issuerId":2492,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_equalByTag","loc":"3:17-41","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"112:0-14","moduleId":8351,"resolvedModuleId":8351}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 112:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-6:42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2971,"sizes":{"javascript":2971},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","index":166,"preOrderIndex":166,"index2":155,"postOrderIndex":155,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","issuerName":"./node_modules/lodash/_baseIsEqualDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096,"issuerId":2492,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_equalObjects","loc":"4:19-45","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","module":"./node_modules/lodash/_equalObjects.js","moduleName":"./node_modules/lodash/_equalObjects.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","resolvedModule":"./node_modules/lodash/_equalObjects.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"90:0-14","moduleId":6096,"resolvedModuleId":6096}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 90:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":173,"sizes":{"javascript":173},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_freeGlobal.js","name":"./node_modules/lodash/_freeGlobal.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_freeGlobal.js","index":18,"preOrderIndex":18,"index2":5,"postOrderIndex":5,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","issuerName":"./node_modules/lodash/_root.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","name":"./node_modules/lodash/now.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7771},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","name":"./node_modules/lodash/_root.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":5639}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1957,"issuerId":5639,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_freeGlobal.js","module":"./node_modules/lodash/_freeGlobal.js","moduleName":"./node_modules/lodash/_freeGlobal.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_freeGlobal.js","resolvedModule":"./node_modules/lodash/_freeGlobal.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:0-14","moduleId":1957,"resolvedModuleId":1957},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_freeGlobal","loc":"1:17-41","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","module":"./node_modules/lodash/_root.js","moduleName":"./node_modules/lodash/_root.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","resolvedModule":"./node_modules/lodash/_root.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_freeGlobal","loc":"1:17-41","moduleId":5639,"resolvedModuleId":5639}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 4:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-91","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":455,"sizes":{"javascript":455},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","index":167,"preOrderIndex":167,"index2":154,"postOrderIndex":154,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","issuerName":"./node_modules/lodash/_equalObjects.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234,"issuerId":6096,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getAllKeys","loc":"10:17-41","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","module":"./node_modules/lodash/_equalObjects.js","moduleName":"./node_modules/lodash/_equalObjects.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","resolvedModule":"./node_modules/lodash/_equalObjects.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getAllKeys","loc":"1:17-41","moduleId":6096,"resolvedModuleId":6096},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","module":"./node_modules/lodash/_getAllKeys.js","moduleName":"./node_modules/lodash/_getAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","resolvedModule":"./node_modules/lodash/_getAllKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":8234,"resolvedModuleId":8234}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":400,"sizes":{"javascript":400},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","name":"./node_modules/lodash/_getMapData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","index":76,"preOrderIndex":76,"index2":65,"postOrderIndex":65,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","issuerName":"./node_modules/lodash/_mapCacheGet.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","name":"./node_modules/lodash/_mapCacheGet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6000}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5050,"issuerId":6000,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","module":"./node_modules/lodash/_getMapData.js","moduleName":"./node_modules/lodash/_getMapData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","resolvedModule":"./node_modules/lodash/_getMapData.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":5050,"resolvedModuleId":5050},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","module":"./node_modules/lodash/_mapCacheDelete.js","moduleName":"./node_modules/lodash/_mapCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","resolvedModule":"./node_modules/lodash/_mapCacheDelete.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMapData","loc":"1:17-41","moduleId":1285,"resolvedModuleId":1285},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","module":"./node_modules/lodash/_mapCacheGet.js","moduleName":"./node_modules/lodash/_mapCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","resolvedModule":"./node_modules/lodash/_mapCacheGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMapData","loc":"1:17-41","moduleId":6000,"resolvedModuleId":6000},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","module":"./node_modules/lodash/_mapCacheHas.js","moduleName":"./node_modules/lodash/_mapCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","resolvedModule":"./node_modules/lodash/_mapCacheHas.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMapData","loc":"1:17-41","moduleId":9916,"resolvedModuleId":9916},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","module":"./node_modules/lodash/_mapCacheSet.js","moduleName":"./node_modules/lodash/_mapCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","resolvedModule":"./node_modules/lodash/_mapCacheSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMapData","loc":"1:17-41","moduleId":5265,"resolvedModuleId":5265}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-40","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":573,"sizes":{"javascript":573},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","name":"./node_modules/lodash/_getMatchData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","index":177,"preOrderIndex":177,"index2":165,"postOrderIndex":165,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","issuerName":"./node_modules/lodash/_baseMatches.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1499,"issuerId":1573,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","module":"./node_modules/lodash/_baseMatches.js","moduleName":"./node_modules/lodash/_baseMatches.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","resolvedModule":"./node_modules/lodash/_baseMatches.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMatchData","loc":"2:19-45","moduleId":1573,"resolvedModuleId":1573},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","module":"./node_modules/lodash/_getMatchData.js","moduleName":"./node_modules/lodash/_getMatchData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","resolvedModule":"./node_modules/lodash/_getMatchData.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"24:0-14","moduleId":1499,"resolvedModuleId":1499}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 24:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":483,"sizes":{"javascript":483},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","index":56,"preOrderIndex":56,"index2":46,"postOrderIndex":46,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","issuerName":"./node_modules/lodash/_DataView.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852,"issuerId":8552,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","module":"./node_modules/lodash/_DataView.js","moduleName":"./node_modules/lodash/_DataView.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","resolvedModule":"./node_modules/lodash/_DataView.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":8552,"resolvedModuleId":8552},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","module":"./node_modules/lodash/_Map.js","moduleName":"./node_modules/lodash/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","resolvedModule":"./node_modules/lodash/_Map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":7071,"resolvedModuleId":7071},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","module":"./node_modules/lodash/_Promise.js","moduleName":"./node_modules/lodash/_Promise.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","resolvedModule":"./node_modules/lodash/_Promise.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":3818,"resolvedModuleId":3818},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","module":"./node_modules/lodash/_Set.js","moduleName":"./node_modules/lodash/_Set.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","resolvedModule":"./node_modules/lodash/_Set.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":8525,"resolvedModuleId":8525},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","module":"./node_modules/lodash/_WeakMap.js","moduleName":"./node_modules/lodash/_WeakMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","resolvedModule":"./node_modules/lodash/_WeakMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":577,"resolvedModuleId":577},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_defineProperty.js","module":"./node_modules/lodash/_defineProperty.js","moduleName":"./node_modules/lodash/_defineProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_defineProperty.js","resolvedModule":"./node_modules/lodash/_defineProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":8777,"resolvedModuleId":8777},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","module":"./node_modules/lodash/_getNative.js","moduleName":"./node_modules/lodash/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","resolvedModule":"./node_modules/lodash/_getNative.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"17:0-14","moduleId":852,"resolvedModuleId":852},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","module":"./node_modules/lodash/_nativeCreate.js","moduleName":"./node_modules/lodash/_nativeCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","resolvedModule":"./node_modules/lodash/_nativeCreate.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":4536,"resolvedModuleId":4536}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 17:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1139,"sizes":{"javascript":1139},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","name":"./node_modules/lodash/_getRawTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","index":19,"preOrderIndex":19,"index2":8,"postOrderIndex":8,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","issuerName":"./node_modules/lodash/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","name":"./node_modules/lodash/_baseGetTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4239}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9607,"issuerId":4239,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","module":"./node_modules/lodash/_baseGetTag.js","moduleName":"./node_modules/lodash/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","resolvedModule":"./node_modules/lodash/_baseGetTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getRawTag","loc":"2:16-39","moduleId":4239,"resolvedModuleId":4239},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","module":"./node_modules/lodash/_getRawTag.js","moduleName":"./node_modules/lodash/_getRawTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","resolvedModule":"./node_modules/lodash/_getRawTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"46:0-14","moduleId":9607,"resolvedModuleId":9607}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 46:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-34","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":886,"sizes":{"javascript":886},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","name":"./node_modules/lodash/_getSymbols.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","index":169,"preOrderIndex":169,"index2":153,"postOrderIndex":153,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","issuerName":"./node_modules/lodash/_getAllKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9551,"issuerId":8234,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","module":"./node_modules/lodash/_copySymbols.js","moduleName":"./node_modules/lodash/_copySymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","resolvedModule":"./node_modules/lodash/_copySymbols.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getSymbols","loc":"2:17-41","moduleId":8805,"resolvedModuleId":8805},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","module":"./node_modules/lodash/_getAllKeys.js","moduleName":"./node_modules/lodash/_getAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","resolvedModule":"./node_modules/lodash/_getAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getSymbols","loc":"2:17-41","moduleId":8234,"resolvedModuleId":8234},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","module":"./node_modules/lodash/_getSymbols.js","moduleName":"./node_modules/lodash/_getSymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","resolvedModule":"./node_modules/lodash/_getSymbols.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":9551,"resolvedModuleId":9551},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","module":"./node_modules/lodash/_getSymbolsIn.js","moduleName":"./node_modules/lodash/_getSymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","resolvedModule":"./node_modules/lodash/_getSymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getSymbols","loc":"3:17-41","moduleId":1442,"resolvedModuleId":1442}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:39","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1838,"sizes":{"javascript":1838},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","index":172,"preOrderIndex":172,"index2":160,"postOrderIndex":160,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"12:13-33","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"5:13-33","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","module":"./node_modules/lodash/_baseIsMap.js","moduleName":"./node_modules/lodash/_baseIsMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","resolvedModule":"./node_modules/lodash/_baseIsMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"1:13-33","moduleId":5588,"resolvedModuleId":5588},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","module":"./node_modules/lodash/_baseIsSet.js","moduleName":"./node_modules/lodash/_baseIsSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","resolvedModule":"./node_modules/lodash/_baseIsSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"1:13-33","moduleId":9221,"resolvedModuleId":9221},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"58:0-14","moduleId":4160,"resolvedModuleId":4160},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"2:13-33","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 58:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-7:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":325,"sizes":{"javascript":325},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getValue.js","name":"./node_modules/lodash/_getValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getValue.js","index":61,"preOrderIndex":61,"index2":45,"postOrderIndex":45,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","issuerName":"./node_modules/lodash/_getNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7801,"issuerId":852,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","module":"./node_modules/lodash/_getNative.js","moduleName":"./node_modules/lodash/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","resolvedModule":"./node_modules/lodash/_getNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getValue","loc":"2:15-37","moduleId":852,"resolvedModuleId":852},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getValue.js","module":"./node_modules/lodash/_getValue.js","moduleName":"./node_modules/lodash/_getValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getValue.js","resolvedModule":"./node_modules/lodash/_getValue.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"13:0-14","moduleId":7801,"resolvedModuleId":7801}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 13:0-14","Statement (ExpressionStatement) with side effects in source code at 13:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1085,"sizes":{"javascript":1085},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","index":91,"preOrderIndex":91,"index2":86,"postOrderIndex":86,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","issuerName":"./node_modules/lodash/has.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222,"issuerId":8721,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"39:0-14","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","module":"./node_modules/lodash/has.js","moduleName":"./node_modules/lodash/has.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","resolvedModule":"./node_modules/lodash/has.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hasPath","loc":"2:14-35","moduleId":8721,"resolvedModuleId":8721},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","module":"./node_modules/lodash/hasIn.js","moduleName":"./node_modules/lodash/hasIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","resolvedModule":"./node_modules/lodash/hasIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hasPath","loc":"2:14-35","moduleId":9095,"resolvedModuleId":9095}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 39:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-6:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":281,"sizes":{"javascript":281},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","name":"./node_modules/lodash/_hashClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","index":54,"preOrderIndex":54,"index2":48,"postOrderIndex":48,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1789,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashClear","loc":"1:16-39","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","module":"./node_modules/lodash/_hashClear.js","moduleName":"./node_modules/lodash/_hashClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","resolvedModule":"./node_modules/lodash/_hashClear.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":1789,"resolvedModuleId":1789}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":445,"sizes":{"javascript":445},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashDelete.js","name":"./node_modules/lodash/_hashDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashDelete.js","index":62,"preOrderIndex":62,"index2":49,"postOrderIndex":49,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":401,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashDelete","loc":"2:17-41","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashDelete.js","module":"./node_modules/lodash/_hashDelete.js","moduleName":"./node_modules/lodash/_hashDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashDelete.js","resolvedModule":"./node_modules/lodash/_hashDelete.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"17:0-14","moduleId":401,"resolvedModuleId":401}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 17:0-14","Statement (ExpressionStatement) with side effects in source code at 17:0-28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":772,"sizes":{"javascript":772},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","name":"./node_modules/lodash/_hashGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","index":63,"preOrderIndex":63,"index2":50,"postOrderIndex":50,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7667,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashGet","loc":"3:14-35","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","module":"./node_modules/lodash/_hashGet.js","moduleName":"./node_modules/lodash/_hashGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","resolvedModule":"./node_modules/lodash/_hashGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":7667,"resolvedModuleId":7667}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":626,"sizes":{"javascript":626},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","name":"./node_modules/lodash/_hashHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","index":64,"preOrderIndex":64,"index2":51,"postOrderIndex":51,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1327,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashHas","loc":"4:14-35","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","module":"./node_modules/lodash/_hashHas.js","moduleName":"./node_modules/lodash/_hashHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","resolvedModule":"./node_modules/lodash/_hashHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":1327,"resolvedModuleId":1327}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":598,"sizes":{"javascript":598},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","name":"./node_modules/lodash/_hashSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","index":65,"preOrderIndex":65,"index2":52,"postOrderIndex":52,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1866,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashSet","loc":"5:14-35","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","module":"./node_modules/lodash/_hashSet.js","moduleName":"./node_modules/lodash/_hashSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","resolvedModule":"./node_modules/lodash/_hashSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":1866,"resolvedModuleId":1866}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":759,"sizes":{"javascript":759},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isIndex.js","name":"./node_modules/lodash/_isIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isIndex.js","index":25,"preOrderIndex":25,"index2":17,"postOrderIndex":17,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","issuerName":"./node_modules/lodash/_hasPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":5776,"issuerId":222,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isIndex","loc":"5:14-35","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isIndex","loc":"3:14-35","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isIndex","loc":"4:14-35","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isIndex.js","module":"./node_modules/lodash/_isIndex.js","moduleName":"./node_modules/lodash/_isIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isIndex.js","resolvedModule":"./node_modules/lodash/_isIndex.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":5776,"resolvedModuleId":5776}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (ExpressionStatement) with side effects in source code at 25:0-25","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":880,"sizes":{"javascript":880},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","name":"./node_modules/lodash/_isKey.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","index":46,"preOrderIndex":46,"index2":40,"postOrderIndex":40,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","issuerName":"./node_modules/lodash/_castPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":5403,"issuerId":1811,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isKey","loc":"4:12-31","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isKey","loc":"2:12-31","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","module":"./node_modules/lodash/_isKey.js","moduleName":"./node_modules/lodash/_isKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","resolvedModule":"./node_modules/lodash/_isKey.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"29:0-14","moduleId":5403,"resolvedModuleId":5403},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isKey","loc":"3:12-31","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 29:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":430,"sizes":{"javascript":430},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKeyable.js","name":"./node_modules/lodash/_isKeyable.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKeyable.js","index":77,"preOrderIndex":77,"index2":64,"postOrderIndex":64,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","issuerName":"./node_modules/lodash/_getMapData.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","name":"./node_modules/lodash/_mapCacheGet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6000},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","name":"./node_modules/lodash/_getMapData.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5050}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7019,"issuerId":5050,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","module":"./node_modules/lodash/_getMapData.js","moduleName":"./node_modules/lodash/_getMapData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","resolvedModule":"./node_modules/lodash/_getMapData.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isKeyable","loc":"1:16-39","moduleId":5050,"resolvedModuleId":5050},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKeyable.js","module":"./node_modules/lodash/_isKeyable.js","moduleName":"./node_modules/lodash/_isKeyable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKeyable.js","resolvedModule":"./node_modules/lodash/_isKeyable.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":7019,"resolvedModuleId":7019}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (ExpressionStatement) with side effects in source code at 15:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":564,"sizes":{"javascript":564},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","name":"./node_modules/lodash/_isMasked.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","index":58,"preOrderIndex":58,"index2":42,"postOrderIndex":42,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","issuerName":"./node_modules/lodash/_baseIsNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","name":"./node_modules/lodash/_baseIsNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8458}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5346,"issuerId":8458,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isMasked","loc":"2:15-37","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","module":"./node_modules/lodash/_isMasked.js","moduleName":"./node_modules/lodash/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","resolvedModule":"./node_modules/lodash/_isMasked.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":5346,"resolvedModuleId":5346}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":480,"sizes":{"javascript":480},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isPrototype.js","name":"./node_modules/lodash/_isPrototype.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isPrototype.js","index":32,"preOrderIndex":32,"index2":24,"postOrderIndex":24,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":5726,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","module":"./node_modules/lodash/_baseKeys.js","moduleName":"./node_modules/lodash/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","resolvedModule":"./node_modules/lodash/_baseKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isPrototype","loc":"1:18-43","moduleId":280,"resolvedModuleId":280},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","module":"./node_modules/lodash/_baseKeysIn.js","moduleName":"./node_modules/lodash/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","resolvedModule":"./node_modules/lodash/_baseKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isPrototype","loc":"2:18-43","moduleId":313,"resolvedModuleId":313},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","module":"./node_modules/lodash/_initCloneObject.js","moduleName":"./node_modules/lodash/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","resolvedModule":"./node_modules/lodash/_initCloneObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isPrototype","loc":"3:18-43","moduleId":8517,"resolvedModuleId":8517},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isPrototype.js","module":"./node_modules/lodash/_isPrototype.js","moduleName":"./node_modules/lodash/_isPrototype.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isPrototype.js","resolvedModule":"./node_modules/lodash/_isPrototype.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":5726,"resolvedModuleId":5726},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isPrototype","loc":"7:18-43","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":414,"sizes":{"javascript":414},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","name":"./node_modules/lodash/_isStrictComparable.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","index":178,"preOrderIndex":178,"index2":164,"postOrderIndex":164,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","issuerName":"./node_modules/lodash/_baseMatchesProperty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":5,"additionalIntegration":0,"factory":0,"dependencies":5},"id":9162,"issuerId":6432,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isStrictComparable","loc":"5:25-57","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","module":"./node_modules/lodash/_getMatchData.js","moduleName":"./node_modules/lodash/_getMatchData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","resolvedModule":"./node_modules/lodash/_getMatchData.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isStrictComparable","loc":"1:25-57","moduleId":1499,"resolvedModuleId":1499},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","module":"./node_modules/lodash/_isStrictComparable.js","moduleName":"./node_modules/lodash/_isStrictComparable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","resolvedModule":"./node_modules/lodash/_isStrictComparable.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":9162,"resolvedModuleId":9162}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":218,"sizes":{"javascript":218},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheClear.js","name":"./node_modules/lodash/_listCacheClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheClear.js","index":67,"preOrderIndex":67,"index2":54,"postOrderIndex":54,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7040,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheClear","loc":"1:21-49","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheClear.js","module":"./node_modules/lodash/_listCacheClear.js","moduleName":"./node_modules/lodash/_listCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheClear.js","resolvedModule":"./node_modules/lodash/_listCacheClear.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"13:0-14","moduleId":7040,"resolvedModuleId":7040}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 13:0-14","Statement (ExpressionStatement) with side effects in source code at 13:0-32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":775,"sizes":{"javascript":775},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","name":"./node_modules/lodash/_listCacheDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","index":68,"preOrderIndex":68,"index2":57,"postOrderIndex":57,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4125,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheDelete","loc":"2:22-51","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","module":"./node_modules/lodash/_listCacheDelete.js","moduleName":"./node_modules/lodash/_listCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","resolvedModule":"./node_modules/lodash/_listCacheDelete.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"35:0-14","moduleId":4125,"resolvedModuleId":4125}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 35:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":420,"sizes":{"javascript":420},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","name":"./node_modules/lodash/_listCacheGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","index":71,"preOrderIndex":71,"index2":58,"postOrderIndex":58,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2117,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheGet","loc":"3:19-45","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","module":"./node_modules/lodash/_listCacheGet.js","moduleName":"./node_modules/lodash/_listCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","resolvedModule":"./node_modules/lodash/_listCacheGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":2117,"resolvedModuleId":2117}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":403,"sizes":{"javascript":403},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","name":"./node_modules/lodash/_listCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","index":72,"preOrderIndex":72,"index2":59,"postOrderIndex":59,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7529,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheHas","loc":"4:19-45","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","module":"./node_modules/lodash/_listCacheHas.js","moduleName":"./node_modules/lodash/_listCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","resolvedModule":"./node_modules/lodash/_listCacheHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":7529,"resolvedModuleId":7529}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":553,"sizes":{"javascript":553},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","name":"./node_modules/lodash/_listCacheSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","index":73,"preOrderIndex":73,"index2":60,"postOrderIndex":60,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4705,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheSet","loc":"5:19-45","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","module":"./node_modules/lodash/_listCacheSet.js","moduleName":"./node_modules/lodash/_listCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","resolvedModule":"./node_modules/lodash/_listCacheSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":4705,"resolvedModuleId":4705}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":393,"sizes":{"javascript":393},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","index":52,"preOrderIndex":52,"index2":63,"postOrderIndex":63,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheClear","loc":"1:20-47","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","module":"./node_modules/lodash/_mapCacheClear.js","moduleName":"./node_modules/lodash/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","resolvedModule":"./node_modules/lodash/_mapCacheClear.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":4785,"resolvedModuleId":4785}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":450,"sizes":{"javascript":450},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","name":"./node_modules/lodash/_mapCacheDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","index":75,"preOrderIndex":75,"index2":66,"postOrderIndex":66,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1285,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheDelete","loc":"2:21-49","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","module":"./node_modules/lodash/_mapCacheDelete.js","moduleName":"./node_modules/lodash/_mapCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","resolvedModule":"./node_modules/lodash/_mapCacheDelete.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":1285,"resolvedModuleId":1285}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":330,"sizes":{"javascript":330},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","name":"./node_modules/lodash/_mapCacheGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","index":78,"preOrderIndex":78,"index2":67,"postOrderIndex":67,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6000,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheGet","loc":"3:18-43","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","module":"./node_modules/lodash/_mapCacheGet.js","moduleName":"./node_modules/lodash/_mapCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","resolvedModule":"./node_modules/lodash/_mapCacheGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":6000,"resolvedModuleId":6000}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":382,"sizes":{"javascript":382},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","name":"./node_modules/lodash/_mapCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","index":79,"preOrderIndex":79,"index2":68,"postOrderIndex":68,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9916,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheHas","loc":"4:18-43","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","module":"./node_modules/lodash/_mapCacheHas.js","moduleName":"./node_modules/lodash/_mapCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","resolvedModule":"./node_modules/lodash/_mapCacheHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":9916,"resolvedModuleId":9916}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":489,"sizes":{"javascript":489},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","name":"./node_modules/lodash/_mapCacheSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","index":80,"preOrderIndex":80,"index2":69,"postOrderIndex":69,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5265,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheSet","loc":"5:18-43","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","module":"./node_modules/lodash/_mapCacheSet.js","moduleName":"./node_modules/lodash/_mapCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","resolvedModule":"./node_modules/lodash/_mapCacheSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":5265,"resolvedModuleId":5265}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":363,"sizes":{"javascript":363},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapToArray.js","name":"./node_modules/lodash/_mapToArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapToArray.js","index":164,"preOrderIndex":164,"index2":147,"postOrderIndex":147,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","issuerName":"./node_modules/lodash/_equalByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","name":"./node_modules/lodash/_equalByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8351}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8776,"issuerId":8351,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapToArray","loc":"5:17-41","moduleId":8351,"resolvedModuleId":8351},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapToArray.js","module":"./node_modules/lodash/_mapToArray.js","moduleName":"./node_modules/lodash/_mapToArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapToArray.js","resolvedModule":"./node_modules/lodash/_mapToArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":8776,"resolvedModuleId":8776}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (ExpressionStatement) with side effects in source code at 18:0-28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":574,"sizes":{"javascript":574},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_matchesStrictComparable.js","name":"./node_modules/lodash/_matchesStrictComparable.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_matchesStrictComparable.js","index":179,"preOrderIndex":179,"index2":166,"postOrderIndex":166,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","issuerName":"./node_modules/lodash/_baseMatches.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2634,"issuerId":1573,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","module":"./node_modules/lodash/_baseMatches.js","moduleName":"./node_modules/lodash/_baseMatches.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","resolvedModule":"./node_modules/lodash/_baseMatches.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_matchesStrictComparable","loc":"3:30-67","moduleId":1573,"resolvedModuleId":1573},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_matchesStrictComparable","loc":"6:30-67","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_matchesStrictComparable.js","module":"./node_modules/lodash/_matchesStrictComparable.js","moduleName":"./node_modules/lodash/_matchesStrictComparable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_matchesStrictComparable.js","resolvedModule":"./node_modules/lodash/_matchesStrictComparable.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":2634,"resolvedModuleId":2634}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (ExpressionStatement) with side effects in source code at 20:0-41","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":633,"sizes":{"javascript":633},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","index":49,"preOrderIndex":49,"index2":72,"postOrderIndex":72,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","issuerName":"./node_modules/lodash/_stringToPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523,"issuerId":5514,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","module":"./node_modules/lodash/_memoizeCapped.js","moduleName":"./node_modules/lodash/_memoizeCapped.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","resolvedModule":"./node_modules/lodash/_memoizeCapped.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":4523,"resolvedModuleId":4523},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","module":"./node_modules/lodash/_stringToPath.js","moduleName":"./node_modules/lodash/_stringToPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","resolvedModule":"./node_modules/lodash/_stringToPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_memoizeCapped","loc":"1:20-47","moduleId":5514,"resolvedModuleId":5514}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":187,"sizes":{"javascript":187},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","name":"./node_modules/lodash/_nativeCreate.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","index":55,"preOrderIndex":55,"index2":47,"postOrderIndex":47,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","issuerName":"./node_modules/lodash/_hashHas.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","name":"./node_modules/lodash/_hashHas.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1327}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4536,"issuerId":1327,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","module":"./node_modules/lodash/_hashClear.js","moduleName":"./node_modules/lodash/_hashClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","resolvedModule":"./node_modules/lodash/_hashClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeCreate","loc":"1:19-45","moduleId":1789,"resolvedModuleId":1789},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","module":"./node_modules/lodash/_hashGet.js","moduleName":"./node_modules/lodash/_hashGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","resolvedModule":"./node_modules/lodash/_hashGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeCreate","loc":"1:19-45","moduleId":7667,"resolvedModuleId":7667},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","module":"./node_modules/lodash/_hashHas.js","moduleName":"./node_modules/lodash/_hashHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","resolvedModule":"./node_modules/lodash/_hashHas.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeCreate","loc":"1:19-45","moduleId":1327,"resolvedModuleId":1327},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","module":"./node_modules/lodash/_hashSet.js","moduleName":"./node_modules/lodash/_hashSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","resolvedModule":"./node_modules/lodash/_hashSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeCreate","loc":"1:19-45","moduleId":1866,"resolvedModuleId":1866},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","module":"./node_modules/lodash/_nativeCreate.js","moduleName":"./node_modules/lodash/_nativeCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","resolvedModule":"./node_modules/lodash/_nativeCreate.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":4536,"resolvedModuleId":4536}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-40","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":12},{"type":"module","moduleType":"javascript/auto","layer":null,"size":204,"sizes":{"javascript":204},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","name":"./node_modules/lodash/_nativeKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","index":33,"preOrderIndex":33,"index2":26,"postOrderIndex":26,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","issuerName":"./node_modules/lodash/_baseKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","name":"./node_modules/lodash/_baseKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":280}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6916,"issuerId":280,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","module":"./node_modules/lodash/_baseKeys.js","moduleName":"./node_modules/lodash/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","resolvedModule":"./node_modules/lodash/_baseKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeKeys","loc":"2:17-41","moduleId":280,"resolvedModuleId":280},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","module":"./node_modules/lodash/_nativeKeys.js","moduleName":"./node_modules/lodash/_nativeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","resolvedModule":"./node_modules/lodash/_nativeKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":6916,"resolvedModuleId":6916}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":995,"sizes":{"javascript":995},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","name":"./node_modules/lodash/_nodeUtil.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","index":30,"preOrderIndex":30,"index2":21,"postOrderIndex":21,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","issuerName":"./node_modules/lodash/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","name":"./node_modules/lodash/isTypedArray.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6719}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":1167,"issuerId":6719,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:48-55","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:60-76","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:80-87","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:61-67","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:72-78","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:91-97","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","module":"./node_modules/lodash/isMap.js","moduleName":"./node_modules/lodash/isMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","resolvedModule":"./node_modules/lodash/isMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nodeUtil","loc":"3:15-37","moduleId":6688,"resolvedModuleId":6688},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","module":"./node_modules/lodash/isSet.js","moduleName":"./node_modules/lodash/isSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","resolvedModule":"./node_modules/lodash/isSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nodeUtil","loc":"3:15-37","moduleId":2928,"resolvedModuleId":2928},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","module":"./node_modules/lodash/isTypedArray.js","moduleName":"./node_modules/lodash/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","resolvedModule":"./node_modules/lodash/isTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nodeUtil","loc":"3:15-37","moduleId":6719,"resolvedModuleId":6719}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: exports is used directly at 4:48-55","CommonJS bailout: exports is used directly at 4:80-87","CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":565,"sizes":{"javascript":565},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_objectToString.js","name":"./node_modules/lodash/_objectToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_objectToString.js","index":20,"preOrderIndex":20,"index2":9,"postOrderIndex":9,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","issuerName":"./node_modules/lodash/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","name":"./node_modules/lodash/_baseGetTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4239}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2333,"issuerId":4239,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","module":"./node_modules/lodash/_baseGetTag.js","moduleName":"./node_modules/lodash/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","resolvedModule":"./node_modules/lodash/_baseGetTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_objectToString","loc":"3:21-49","moduleId":4239,"resolvedModuleId":4239},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_objectToString.js","module":"./node_modules/lodash/_objectToString.js","moduleName":"./node_modules/lodash/_objectToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_objectToString.js","resolvedModule":"./node_modules/lodash/_objectToString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":2333,"resolvedModuleId":2333}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":382,"sizes":{"javascript":382},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overArg.js","name":"./node_modules/lodash/_overArg.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overArg.js","index":34,"preOrderIndex":34,"index2":25,"postOrderIndex":25,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","issuerName":"./node_modules/lodash/_nativeKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","name":"./node_modules/lodash/_baseKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":280},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","name":"./node_modules/lodash/_nativeKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6916}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":5569,"issuerId":6916,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getPrototype.js","module":"./node_modules/lodash/_getPrototype.js","moduleName":"./node_modules/lodash/_getPrototype.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getPrototype.js","resolvedModule":"./node_modules/lodash/_getPrototype.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_overArg","loc":"1:14-35","moduleId":5924,"resolvedModuleId":5924},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","module":"./node_modules/lodash/_nativeKeys.js","moduleName":"./node_modules/lodash/_nativeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","resolvedModule":"./node_modules/lodash/_nativeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_overArg","loc":"1:14-35","moduleId":6916,"resolvedModuleId":6916},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overArg.js","module":"./node_modules/lodash/_overArg.js","moduleName":"./node_modules/lodash/_overArg.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overArg.js","resolvedModule":"./node_modules/lodash/_overArg.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":5569,"resolvedModuleId":5569}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (ExpressionStatement) with side effects in source code at 15:0-25","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":300,"sizes":{"javascript":300},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","name":"./node_modules/lodash/_root.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","index":17,"preOrderIndex":17,"index2":6,"postOrderIndex":6,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","issuerName":"./node_modules/lodash/now.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","name":"./node_modules/lodash/now.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7771}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":5639,"issuerId":7771,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","module":"./node_modules/lodash/_DataView.js","moduleName":"./node_modules/lodash/_DataView.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","resolvedModule":"./node_modules/lodash/_DataView.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":8552,"resolvedModuleId":8552},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","module":"./node_modules/lodash/_Map.js","moduleName":"./node_modules/lodash/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","resolvedModule":"./node_modules/lodash/_Map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":7071,"resolvedModuleId":7071},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","module":"./node_modules/lodash/_Promise.js","moduleName":"./node_modules/lodash/_Promise.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","resolvedModule":"./node_modules/lodash/_Promise.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":3818,"resolvedModuleId":3818},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","module":"./node_modules/lodash/_Set.js","moduleName":"./node_modules/lodash/_Set.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","resolvedModule":"./node_modules/lodash/_Set.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":8525,"resolvedModuleId":8525},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","module":"./node_modules/lodash/_Symbol.js","moduleName":"./node_modules/lodash/_Symbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","resolvedModule":"./node_modules/lodash/_Symbol.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":2705,"resolvedModuleId":2705},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","module":"./node_modules/lodash/_Uint8Array.js","moduleName":"./node_modules/lodash/_Uint8Array.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","resolvedModule":"./node_modules/lodash/_Uint8Array.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":1149,"resolvedModuleId":1149},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","module":"./node_modules/lodash/_WeakMap.js","moduleName":"./node_modules/lodash/_WeakMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","resolvedModule":"./node_modules/lodash/_WeakMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":577,"resolvedModuleId":577},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":4626,"resolvedModuleId":4626},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","module":"./node_modules/lodash/_coreJsData.js","moduleName":"./node_modules/lodash/_coreJsData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","resolvedModule":"./node_modules/lodash/_coreJsData.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":4429,"resolvedModuleId":4429},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","module":"./node_modules/lodash/_root.js","moduleName":"./node_modules/lodash/_root.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","resolvedModule":"./node_modules/lodash/_root.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"9:0-14","moduleId":5639,"resolvedModuleId":5639},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","module":"./node_modules/lodash/now.js","moduleName":"./node_modules/lodash/now.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","resolvedModule":"./node_modules/lodash/now.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":7771,"resolvedModuleId":7771}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 9:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":424,"sizes":{"javascript":424},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheAdd.js","name":"./node_modules/lodash/_setCacheAdd.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheAdd.js","index":158,"preOrderIndex":158,"index2":140,"postOrderIndex":140,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","issuerName":"./node_modules/lodash/_SetCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","name":"./node_modules/lodash/_SetCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8668}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":619,"issuerId":8668,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","module":"./node_modules/lodash/_SetCache.js","moduleName":"./node_modules/lodash/_SetCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","resolvedModule":"./node_modules/lodash/_SetCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_setCacheAdd","loc":"2:18-43","moduleId":8668,"resolvedModuleId":8668},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheAdd.js","module":"./node_modules/lodash/_setCacheAdd.js","moduleName":"./node_modules/lodash/_setCacheAdd.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheAdd.js","resolvedModule":"./node_modules/lodash/_setCacheAdd.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":619,"resolvedModuleId":619}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (ExpressionStatement) with side effects in source code at 19:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":316,"sizes":{"javascript":316},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheHas.js","name":"./node_modules/lodash/_setCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheHas.js","index":159,"preOrderIndex":159,"index2":141,"postOrderIndex":141,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","issuerName":"./node_modules/lodash/_SetCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","name":"./node_modules/lodash/_SetCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8668}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2385,"issuerId":8668,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","module":"./node_modules/lodash/_SetCache.js","moduleName":"./node_modules/lodash/_SetCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","resolvedModule":"./node_modules/lodash/_SetCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_setCacheHas","loc":"3:18-43","moduleId":8668,"resolvedModuleId":8668},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheHas.js","module":"./node_modules/lodash/_setCacheHas.js","moduleName":"./node_modules/lodash/_setCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheHas.js","resolvedModule":"./node_modules/lodash/_setCacheHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":2385,"resolvedModuleId":2385}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":345,"sizes":{"javascript":345},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToArray.js","name":"./node_modules/lodash/_setToArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToArray.js","index":165,"preOrderIndex":165,"index2":148,"postOrderIndex":148,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","issuerName":"./node_modules/lodash/_equalByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","name":"./node_modules/lodash/_equalByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8351}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1814,"issuerId":8351,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_setToArray","loc":"6:17-41","moduleId":8351,"resolvedModuleId":8351},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToArray.js","module":"./node_modules/lodash/_setToArray.js","moduleName":"./node_modules/lodash/_setToArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToArray.js","resolvedModule":"./node_modules/lodash/_setToArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":1814,"resolvedModuleId":1814}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (ExpressionStatement) with side effects in source code at 18:0-28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":254,"sizes":{"javascript":254},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","name":"./node_modules/lodash/_stackClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","index":149,"preOrderIndex":149,"index2":134,"postOrderIndex":134,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7465,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackClear","loc":"2:17-41","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","module":"./node_modules/lodash/_stackClear.js","moduleName":"./node_modules/lodash/_stackClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","resolvedModule":"./node_modules/lodash/_stackClear.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":7465,"resolvedModuleId":7465}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-40","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":405,"sizes":{"javascript":405},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackDelete.js","name":"./node_modules/lodash/_stackDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackDelete.js","index":150,"preOrderIndex":150,"index2":135,"postOrderIndex":135,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3779,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackDelete","loc":"3:18-43","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackDelete.js","module":"./node_modules/lodash/_stackDelete.js","moduleName":"./node_modules/lodash/_stackDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackDelete.js","resolvedModule":"./node_modules/lodash/_stackDelete.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":3779,"resolvedModuleId":3779}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (ExpressionStatement) with side effects in source code at 18:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":271,"sizes":{"javascript":271},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackGet.js","name":"./node_modules/lodash/_stackGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackGet.js","index":151,"preOrderIndex":151,"index2":136,"postOrderIndex":136,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7599,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackGet","loc":"4:15-37","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackGet.js","module":"./node_modules/lodash/_stackGet.js","moduleName":"./node_modules/lodash/_stackGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackGet.js","resolvedModule":"./node_modules/lodash/_stackGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":7599,"resolvedModuleId":7599}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":323,"sizes":{"javascript":323},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackHas.js","name":"./node_modules/lodash/_stackHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackHas.js","index":152,"preOrderIndex":152,"index2":137,"postOrderIndex":137,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4758,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackHas","loc":"5:15-37","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackHas.js","module":"./node_modules/lodash/_stackHas.js","moduleName":"./node_modules/lodash/_stackHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackHas.js","resolvedModule":"./node_modules/lodash/_stackHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":4758,"resolvedModuleId":4758}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":853,"sizes":{"javascript":853},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","name":"./node_modules/lodash/_stackSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","index":153,"preOrderIndex":153,"index2":138,"postOrderIndex":138,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4309,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackSet","loc":"6:15-37","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","module":"./node_modules/lodash/_stackSet.js","moduleName":"./node_modules/lodash/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","resolvedModule":"./node_modules/lodash/_stackSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"34:0-14","moduleId":4309,"resolvedModuleId":4309}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 34:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":600,"sizes":{"javascript":600},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_strictIndexOf.js","name":"./node_modules/lodash/_strictIndexOf.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_strictIndexOf.js","index":386,"preOrderIndex":386,"index2":382,"postOrderIndex":382,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","issuerName":"./node_modules/lodash/_baseIndexOf.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","name":"./node_modules/lodash/_baseIndexOf.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2118}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2351,"issuerId":2118,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","module":"./node_modules/lodash/_baseIndexOf.js","moduleName":"./node_modules/lodash/_baseIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","resolvedModule":"./node_modules/lodash/_baseIndexOf.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_strictIndexOf","loc":"3:20-47","moduleId":2118,"resolvedModuleId":2118},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_strictIndexOf.js","module":"./node_modules/lodash/_strictIndexOf.js","moduleName":"./node_modules/lodash/_strictIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_strictIndexOf.js","resolvedModule":"./node_modules/lodash/_strictIndexOf.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":2351,"resolvedModuleId":2351}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (ExpressionStatement) with side effects in source code at 23:0-31","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":840,"sizes":{"javascript":840},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","index":48,"preOrderIndex":48,"index2":73,"postOrderIndex":73,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","issuerName":"./node_modules/lodash/_castPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514,"issuerId":1811,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stringToPath","loc":"3:19-45","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","module":"./node_modules/lodash/_stringToPath.js","moduleName":"./node_modules/lodash/_stringToPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","resolvedModule":"./node_modules/lodash/_stringToPath.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":5514,"resolvedModuleId":5514}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-48","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":523,"sizes":{"javascript":523},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","name":"./node_modules/lodash/_toKey.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","index":84,"preOrderIndex":84,"index2":78,"postOrderIndex":78,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","issuerName":"./node_modules/lodash/_hasPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":327,"issuerId":222,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","module":"./node_modules/lodash/_baseGet.js","moduleName":"./node_modules/lodash/_baseGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","resolvedModule":"./node_modules/lodash/_baseGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"2:12-31","moduleId":7786,"resolvedModuleId":7786},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"7:12-31","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"5:12-31","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"6:12-31","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","module":"./node_modules/lodash/_toKey.js","moduleName":"./node_modules/lodash/_toKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","resolvedModule":"./node_modules/lodash/_toKey.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":327,"resolvedModuleId":327},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"4:12-31","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":556,"sizes":{"javascript":556},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toSource.js","name":"./node_modules/lodash/_toSource.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toSource.js","index":60,"preOrderIndex":60,"index2":43,"postOrderIndex":43,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":346,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toSource","loc":"4:15-37","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toSource","loc":"7:15-37","moduleId":4160,"resolvedModuleId":4160},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toSource.js","module":"./node_modules/lodash/_toSource.js","moduleName":"./node_modules/lodash/_toSource.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toSource.js","resolvedModule":"./node_modules/lodash/_toSource.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":346,"resolvedModuleId":346}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":515,"sizes":{"javascript":515},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_trimmedEndIndex.js","name":"./node_modules/lodash/_trimmedEndIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_trimmedEndIndex.js","index":114,"preOrderIndex":114,"index2":109,"postOrderIndex":109,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","issuerName":"./node_modules/lodash/_baseTrim.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","name":"./node_modules/lodash/toNumber.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":4841},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","name":"./node_modules/lodash/_baseTrim.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7561}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7990,"issuerId":7561,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","module":"./node_modules/lodash/_baseTrim.js","moduleName":"./node_modules/lodash/_baseTrim.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","resolvedModule":"./node_modules/lodash/_baseTrim.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_trimmedEndIndex","loc":"1:22-51","moduleId":7561,"resolvedModuleId":7561},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_trimmedEndIndex.js","module":"./node_modules/lodash/_trimmedEndIndex.js","moduleName":"./node_modules/lodash/_trimmedEndIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_trimmedEndIndex.js","resolvedModule":"./node_modules/lodash/_trimmedEndIndex.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":7990,"resolvedModuleId":7990}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (ExpressionStatement) with side effects in source code at 19:0-33","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6100,"sizes":{"javascript":6100},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","index":110,"preOrderIndex":110,"index2":112,"postOrderIndex":112,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"68:21-30","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/debounce","loc":"15:19-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"94:28-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/debounce","loc":"15:19-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"94:28-37","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"191:0-14","moduleId":3279,"resolvedModuleId":3279}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 191:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":39,"sizes":{"javascript":39},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","index":3,"preOrderIndex":3,"index2":38,"postOrderIndex":38,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","issuerName":"./src/_js/customizer/global-service.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"4:0-32","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"154:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"162:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"170:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"193:2-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"209:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"310:2-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"451:2-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"4:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"154:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"162:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"170:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"193:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"209:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"310:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"451:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","module":"./src/_js/customizer/global-service.js","moduleName":"./src/_js/customizer/global-service.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"1:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","module":"./src/_js/customizer/global-service.js","moduleName":"./src/_js/customizer/global-service.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"59:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"1:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"59:2-7","moduleId":9495,"resolvedModuleId":null}],"usedExports":true,"providedExports":null,"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 1:0-38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":799,"sizes":{"javascript":799},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/eq.js","name":"./node_modules/lodash/eq.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/eq.js","index":70,"preOrderIndex":70,"index2":55,"postOrderIndex":55,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","issuerName":"./node_modules/lodash/_assignValue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","name":"./node_modules/lodash/_basePickBy.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3012},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","name":"./node_modules/lodash/_baseSet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":611},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","name":"./node_modules/lodash/_assignValue.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4865}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7813,"issuerId":4865,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","module":"./node_modules/lodash/_assignValue.js","moduleName":"./node_modules/lodash/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","resolvedModule":"./node_modules/lodash/_assignValue.js","type":"cjs require","active":true,"explanation":"","userRequest":"./eq","loc":"2:9-24","moduleId":4865,"resolvedModuleId":4865},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","module":"./node_modules/lodash/_assocIndexOf.js","moduleName":"./node_modules/lodash/_assocIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","resolvedModule":"./node_modules/lodash/_assocIndexOf.js","type":"cjs require","active":true,"explanation":"","userRequest":"./eq","loc":"1:9-24","moduleId":8470,"resolvedModuleId":8470},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./eq","loc":"3:9-24","moduleId":8351,"resolvedModuleId":8351},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/eq.js","module":"./node_modules/lodash/eq.js","moduleName":"./node_modules/lodash/eq.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/eq.js","resolvedModule":"./node_modules/lodash/eq.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":7813,"resolvedModuleId":7813}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (ExpressionStatement) with side effects in source code at 37:0-20","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1304,"sizes":{"javascript":1304},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","index":373,"preOrderIndex":373,"index2":376,"postOrderIndex":376,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/find","loc":"1:0-32","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/find","loc":"423:6-11","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/find","loc":"1:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/find","loc":"423:6-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","module":"./node_modules/lodash/find.js","moduleName":"./node_modules/lodash/find.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","resolvedModule":"./node_modules/lodash/find.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"42:0-14","moduleId":3311,"resolvedModuleId":3311}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 42:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:39","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1654,"sizes":{"javascript":1654},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","name":"./node_modules/lodash/findIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","index":375,"preOrderIndex":375,"index2":375,"postOrderIndex":375,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","issuerName":"./node_modules/lodash/find.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":998,"issuerId":3311,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","module":"./node_modules/lodash/find.js","moduleName":"./node_modules/lodash/find.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","resolvedModule":"./node_modules/lodash/find.js","type":"cjs require","active":true,"explanation":"","userRequest":"./findIndex","loc":"2:16-38","moduleId":3311,"resolvedModuleId":3311},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","module":"./node_modules/lodash/findIndex.js","moduleName":"./node_modules/lodash/findIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","resolvedModule":"./node_modules/lodash/findIndex.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"55:0-14","moduleId":998,"resolvedModuleId":998}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 55:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:39","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1355,"sizes":{"javascript":1355},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","index":4,"preOrderIndex":4,"index2":37,"postOrderIndex":37,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","issuerName":"./node_modules/lodash/each.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486,"issuerId":6073,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","module":"./node_modules/lodash/each.js","moduleName":"./node_modules/lodash/each.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","resolvedModule":"./node_modules/lodash/each.js","type":"cjs export require","active":true,"explanation":"","userRequest":"./forEach","loc":"1:0-37","moduleId":6073,"resolvedModuleId":6073},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"41:0-14","moduleId":4486,"resolvedModuleId":4486}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 41:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":884,"sizes":{"javascript":884},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","name":"./node_modules/lodash/get.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","index":181,"preOrderIndex":181,"index2":168,"postOrderIndex":168,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","issuerName":"./node_modules/lodash/_baseMatchesProperty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7361,"issuerId":6432,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./get","loc":"2:10-26","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","module":"./node_modules/lodash/get.js","moduleName":"./node_modules/lodash/get.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","resolvedModule":"./node_modules/lodash/get.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"33:0-14","moduleId":7361,"resolvedModuleId":7361}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 33:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":757,"sizes":{"javascript":757},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","index":379,"preOrderIndex":379,"index2":378,"postOrderIndex":378,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/has","loc":"2:0-30","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/has","loc":"283:6-10","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/has","loc":"2:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/has","loc":"283:6-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","module":"./node_modules/lodash/has.js","moduleName":"./node_modules/lodash/has.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","resolvedModule":"./node_modules/lodash/has.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"35:0-14","moduleId":8721,"resolvedModuleId":8721}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 35:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":753,"sizes":{"javascript":753},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","name":"./node_modules/lodash/hasIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","index":89,"preOrderIndex":89,"index2":87,"postOrderIndex":87,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","issuerName":"./node_modules/lodash/_basePick.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":9095,"issuerId":5970,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./hasIn","loc":"3:12-30","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","module":"./node_modules/lodash/_basePick.js","moduleName":"./node_modules/lodash/_basePick.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","resolvedModule":"./node_modules/lodash/_basePick.js","type":"cjs require","active":true,"explanation":"","userRequest":"./hasIn","loc":"2:12-30","moduleId":5970,"resolvedModuleId":5970},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","module":"./node_modules/lodash/hasIn.js","moduleName":"./node_modules/lodash/hasIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","resolvedModule":"./node_modules/lodash/hasIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"34:0-14","moduleId":9095,"resolvedModuleId":9095}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 34:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":370,"sizes":{"javascript":370},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/identity.js","name":"./node_modules/lodash/identity.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/identity.js","index":40,"preOrderIndex":40,"index2":35,"postOrderIndex":35,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","issuerName":"./node_modules/lodash/_castFunction.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","name":"./node_modules/lodash/_castFunction.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4290}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":6557,"issuerId":4290,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./identity","loc":"3:15-36","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","module":"./node_modules/lodash/_baseSetToString.js","moduleName":"./node_modules/lodash/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","resolvedModule":"./node_modules/lodash/_baseSetToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./identity","loc":"3:15-36","moduleId":6560,"resolvedModuleId":6560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","module":"./node_modules/lodash/_castFunction.js","moduleName":"./node_modules/lodash/_castFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","resolvedModule":"./node_modules/lodash/_castFunction.js","type":"cjs require","active":true,"explanation":"","userRequest":"./identity","loc":"1:15-36","moduleId":4290,"resolvedModuleId":4290},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/identity.js","module":"./node_modules/lodash/identity.js","moduleName":"./node_modules/lodash/identity.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/identity.js","resolvedModule":"./node_modules/lodash/identity.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":6557,"resolvedModuleId":6557}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (ExpressionStatement) with side effects in source code at 21:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1772,"sizes":{"javascript":1772},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","index":383,"preOrderIndex":383,"index2":386,"postOrderIndex":386,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/includes","loc":"7:0-40","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"16:51-60","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"31:52-61","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"57:49-58","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"81:54-63","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"105:51-60","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"129:50-59","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"133:54-63","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"137:55-64","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"222:8-17","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"232:11-20","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"237:11-20","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"278:6-15","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"352:7-16","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"383:9-18","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/includes","loc":"7:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"16:51-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"31:52-61","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"57:49-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"81:54-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"105:51-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"129:50-59","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"133:54-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"137:55-64","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"222:8-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"232:11-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"237:11-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"278:6-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"352:7-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"383:9-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","module":"./node_modules/lodash/includes.js","moduleName":"./node_modules/lodash/includes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","resolvedModule":"./node_modules/lodash/includes.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"53:0-14","moduleId":4721,"resolvedModuleId":4721}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 53:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:33","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1026,"sizes":{"javascript":1026},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","name":"./node_modules/lodash/isArguments.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","index":13,"preOrderIndex":13,"index2":13,"postOrderIndex":13,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":5694,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArguments","loc":"2:18-42","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArguments","loc":"2:18-42","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","module":"./node_modules/lodash/_isFlattenable.js","moduleName":"./node_modules/lodash/_isFlattenable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","resolvedModule":"./node_modules/lodash/_isFlattenable.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArguments","loc":"2:18-42","moduleId":7285,"resolvedModuleId":7285},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","module":"./node_modules/lodash/isArguments.js","moduleName":"./node_modules/lodash/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","resolvedModule":"./node_modules/lodash/isArguments.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"36:0-14","moduleId":5694,"resolvedModuleId":5694},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArguments","loc":"3:18-42","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 36:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":488,"sizes":{"javascript":488},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArray.js","name":"./node_modules/lodash/isArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArray.js","index":22,"preOrderIndex":22,"index2":14,"postOrderIndex":14,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","issuerName":"./node_modules/lodash/isString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":1469,"issuerId":7037,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"3:14-34","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"16:14-34","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","module":"./node_modules/lodash/_baseGetAllKeys.js","moduleName":"./node_modules/lodash/_baseGetAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","resolvedModule":"./node_modules/lodash/_baseGetAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"2:14-34","moduleId":8866,"resolvedModuleId":8866},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"6:14-34","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"4:14-34","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"3:14-34","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"1:14-34","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"3:14-34","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","module":"./node_modules/lodash/_isFlattenable.js","moduleName":"./node_modules/lodash/_isFlattenable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","resolvedModule":"./node_modules/lodash/_isFlattenable.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"3:14-34","moduleId":7285,"resolvedModuleId":7285},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","module":"./node_modules/lodash/_isKey.js","moduleName":"./node_modules/lodash/_isKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","resolvedModule":"./node_modules/lodash/_isKey.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"1:14-34","moduleId":5403,"resolvedModuleId":5403},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"4:14-34","moduleId":4486,"resolvedModuleId":4486},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArray.js","module":"./node_modules/lodash/isArray.js","moduleName":"./node_modules/lodash/isArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArray.js","resolvedModule":"./node_modules/lodash/isArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":1469,"resolvedModuleId":1469},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"4:14-34","moduleId":1609,"resolvedModuleId":1609},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","module":"./node_modules/lodash/isString.js","moduleName":"./node_modules/lodash/isString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","resolvedModule":"./node_modules/lodash/isString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"2:14-34","moduleId":7037,"resolvedModuleId":7037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","module":"./node_modules/lodash/map.js","moduleName":"./node_modules/lodash/map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","resolvedModule":"./node_modules/lodash/map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"4:14-34","moduleId":5161,"resolvedModuleId":5161}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 24:0-28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":830,"sizes":{"javascript":830},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","name":"./node_modules/lodash/isArrayLike.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","index":35,"preOrderIndex":35,"index2":30,"postOrderIndex":30,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":8612,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","module":"./node_modules/lodash/_baseMap.js","moduleName":"./node_modules/lodash/_baseMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","resolvedModule":"./node_modules/lodash/_baseMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"2:18-42","moduleId":9199,"resolvedModuleId":9199},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","module":"./node_modules/lodash/_createBaseEach.js","moduleName":"./node_modules/lodash/_createBaseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","resolvedModule":"./node_modules/lodash/_createBaseEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"1:18-42","moduleId":9291,"resolvedModuleId":9291},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","module":"./node_modules/lodash/_createFind.js","moduleName":"./node_modules/lodash/_createFind.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","resolvedModule":"./node_modules/lodash/_createFind.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"2:18-42","moduleId":7740,"resolvedModuleId":7740},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","module":"./node_modules/lodash/includes.js","moduleName":"./node_modules/lodash/includes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","resolvedModule":"./node_modules/lodash/includes.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"2:18-42","moduleId":4721,"resolvedModuleId":4721},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","module":"./node_modules/lodash/isArrayLike.js","moduleName":"./node_modules/lodash/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","resolvedModule":"./node_modules/lodash/isArrayLike.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"33:0-14","moduleId":8612,"resolvedModuleId":8612},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"5:18-42","moduleId":1609,"resolvedModuleId":1609},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","module":"./node_modules/lodash/keys.js","moduleName":"./node_modules/lodash/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","resolvedModule":"./node_modules/lodash/keys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"3:18-42","moduleId":3674,"resolvedModuleId":3674},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","module":"./node_modules/lodash/keysIn.js","moduleName":"./node_modules/lodash/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","resolvedModule":"./node_modules/lodash/keysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"3:18-42","moduleId":1704,"resolvedModuleId":1704}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 33:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1114,"sizes":{"javascript":1114},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","name":"./node_modules/lodash/isBuffer.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","index":23,"preOrderIndex":23,"index2":16,"postOrderIndex":16,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4144,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isBuffer","loc":"4:15-36","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isBuffer","loc":"17:15-36","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isBuffer","loc":"7:15-36","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"5:48-55","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"5:60-76","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"5:80-87","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"8:61-67","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"8:72-78","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"8:91-97","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"38:0-14","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isBuffer","loc":"6:15-36","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: exports is used directly at 5:48-55","CommonJS bailout: exports is used directly at 5:80-87","CommonJS bailout: module.exports is used directly at 38:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:39","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2000,"sizes":{"javascript":2000},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","index":381,"preOrderIndex":381,"index2":379,"postOrderIndex":379,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"3:0-38","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"178:52-60","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"178:85-93","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"194:8-16","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"202:7-15","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"208:7-15","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"268:6-14","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"273:6-14","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"304:6-14","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"355:9-17","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"358:11-19","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"386:11-19","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"389:13-21","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"413:60-68","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"415:61-69","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"3:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"178:52-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"178:85-93","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"194:8-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"202:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"208:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"268:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"273:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"304:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"355:9-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"358:11-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"386:11-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"389:13-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"413:60-68","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"415:61-69","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"77:0-14","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 77:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-8:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":993,"sizes":{"javascript":993},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","name":"./node_modules/lodash/isFunction.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","index":36,"preOrderIndex":36,"index2":29,"postOrderIndex":29,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","issuerName":"./node_modules/lodash/isArrayLike.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","name":"./node_modules/lodash/isArrayLike.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":8612}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":3560,"issuerId":8612,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isFunction","loc":"1:17-40","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","module":"./node_modules/lodash/isArrayLike.js","moduleName":"./node_modules/lodash/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","resolvedModule":"./node_modules/lodash/isArrayLike.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isFunction","loc":"1:17-40","moduleId":8612,"resolvedModuleId":8612},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","module":"./node_modules/lodash/isFunction.js","moduleName":"./node_modules/lodash/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","resolvedModule":"./node_modules/lodash/isFunction.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":3560,"resolvedModuleId":3560}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":802,"sizes":{"javascript":802},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isLength.js","name":"./node_modules/lodash/isLength.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isLength.js","index":28,"preOrderIndex":28,"index2":18,"postOrderIndex":18,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","issuerName":"./node_modules/lodash/_hasPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":1780,"issuerId":222,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","module":"./node_modules/lodash/_baseIsTypedArray.js","moduleName":"./node_modules/lodash/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash/_baseIsTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isLength","loc":"2:15-36","moduleId":8749,"resolvedModuleId":8749},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isLength","loc":"5:15-36","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","module":"./node_modules/lodash/isArrayLike.js","moduleName":"./node_modules/lodash/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","resolvedModule":"./node_modules/lodash/isArrayLike.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isLength","loc":"2:15-36","moduleId":8612,"resolvedModuleId":8612},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isLength.js","module":"./node_modules/lodash/isLength.js","moduleName":"./node_modules/lodash/isLength.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isLength.js","resolvedModule":"./node_modules/lodash/isLength.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"35:0-14","moduleId":1780,"resolvedModuleId":1780}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 35:0-14","Statement (ExpressionStatement) with side effects in source code at 35:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":886,"sizes":{"javascript":886},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","name":"./node_modules/lodash/isNumber.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","index":382,"preOrderIndex":382,"index2":380,"postOrderIndex":380,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1763,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isNumber","loc":"5:0-40","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isNumber","loc":"52:15-24","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isNumber","loc":"5:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isNumber","loc":"52:15-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","module":"./node_modules/lodash/isNumber.js","moduleName":"./node_modules/lodash/isNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","resolvedModule":"./node_modules/lodash/isNumber.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"38:0-14","moduleId":1763,"resolvedModuleId":1763}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 38:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":733,"sizes":{"javascript":733},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","name":"./node_modules/lodash/isObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","index":37,"preOrderIndex":37,"index2":28,"postOrderIndex":28,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","issuerName":"./node_modules/lodash/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3218,"issuerId":3279,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"19:15-36","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","module":"./node_modules/lodash/_baseCreate.js","moduleName":"./node_modules/lodash/_baseCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","resolvedModule":"./node_modules/lodash/_baseCreate.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":3118,"resolvedModuleId":3118},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"3:15-36","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","module":"./node_modules/lodash/_baseKeysIn.js","moduleName":"./node_modules/lodash/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","resolvedModule":"./node_modules/lodash/_baseKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":313,"resolvedModuleId":313},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"4:15-36","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","module":"./node_modules/lodash/_isStrictComparable.js","moduleName":"./node_modules/lodash/_isStrictComparable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","resolvedModule":"./node_modules/lodash/_isStrictComparable.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":9162,"resolvedModuleId":9162},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":3279,"resolvedModuleId":3279},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","module":"./node_modules/lodash/isFunction.js","moduleName":"./node_modules/lodash/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","resolvedModule":"./node_modules/lodash/isFunction.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"2:15-36","moduleId":3560,"resolvedModuleId":3560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","module":"./node_modules/lodash/isObject.js","moduleName":"./node_modules/lodash/isObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","resolvedModule":"./node_modules/lodash/isObject.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"31:0-14","moduleId":3218,"resolvedModuleId":3218},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"2:15-36","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 31:0-14","Statement (ExpressionStatement) with side effects in source code at 31:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":614,"sizes":{"javascript":614},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObjectLike.js","name":"./node_modules/lodash/isObjectLike.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObjectLike.js","index":21,"preOrderIndex":21,"index2":11,"postOrderIndex":11,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","issuerName":"./node_modules/lodash/isString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":7005,"issuerId":7037,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","module":"./node_modules/lodash/_baseIsArguments.js","moduleName":"./node_modules/lodash/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","resolvedModule":"./node_modules/lodash/_baseIsArguments.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":9454,"resolvedModuleId":9454},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","module":"./node_modules/lodash/_baseIsEqual.js","moduleName":"./node_modules/lodash/_baseIsEqual.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","resolvedModule":"./node_modules/lodash/_baseIsEqual.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":939,"resolvedModuleId":939},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","module":"./node_modules/lodash/_baseIsMap.js","moduleName":"./node_modules/lodash/_baseIsMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","resolvedModule":"./node_modules/lodash/_baseIsMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":5588,"resolvedModuleId":5588},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","module":"./node_modules/lodash/_baseIsSet.js","moduleName":"./node_modules/lodash/_baseIsSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","resolvedModule":"./node_modules/lodash/_baseIsSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":9221,"resolvedModuleId":9221},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","module":"./node_modules/lodash/_baseIsTypedArray.js","moduleName":"./node_modules/lodash/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash/_baseIsTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"3:19-44","moduleId":8749,"resolvedModuleId":8749},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","module":"./node_modules/lodash/isArguments.js","moduleName":"./node_modules/lodash/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","resolvedModule":"./node_modules/lodash/isArguments.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":5694,"resolvedModuleId":5694},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","module":"./node_modules/lodash/isNumber.js","moduleName":"./node_modules/lodash/isNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","resolvedModule":"./node_modules/lodash/isNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":1763,"resolvedModuleId":1763},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObjectLike.js","module":"./node_modules/lodash/isObjectLike.js","moduleName":"./node_modules/lodash/isObjectLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObjectLike.js","resolvedModule":"./node_modules/lodash/isObjectLike.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"29:0-14","moduleId":7005,"resolvedModuleId":7005},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","module":"./node_modules/lodash/isPlainObject.js","moduleName":"./node_modules/lodash/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","resolvedModule":"./node_modules/lodash/isPlainObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"3:19-44","moduleId":8630,"resolvedModuleId":8630},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","module":"./node_modules/lodash/isString.js","moduleName":"./node_modules/lodash/isString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","resolvedModule":"./node_modules/lodash/isString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"3:19-44","moduleId":7037,"resolvedModuleId":7037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","module":"./node_modules/lodash/isSymbol.js","moduleName":"./node_modules/lodash/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","resolvedModule":"./node_modules/lodash/isSymbol.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":3448,"resolvedModuleId":3448}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 29:0-14","Statement (ExpressionStatement) with side effects in source code at 29:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":723,"sizes":{"javascript":723},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","index":140,"preOrderIndex":140,"index2":130,"postOrderIndex":130,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isString","loc":"6:0-40","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isString","loc":"34:8-17","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isString","loc":"6:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isString","loc":"34:8-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","module":"./node_modules/lodash/includes.js","moduleName":"./node_modules/lodash/includes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","resolvedModule":"./node_modules/lodash/includes.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isString","loc":"3:15-36","moduleId":4721,"resolvedModuleId":4721},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","module":"./node_modules/lodash/isString.js","moduleName":"./node_modules/lodash/isString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","resolvedModule":"./node_modules/lodash/isString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":7037,"resolvedModuleId":7037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","module":"./node_modules/reactcss/lib/flattenNames.js","moduleName":"./node_modules/reactcss/lib/flattenNames.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","resolvedModule":"./node_modules/reactcss/lib/flattenNames.js","type":"cjs require","active":true,"explanation":"","userRequest":"lodash/isString","loc":"8:17-43","moduleId":4147,"resolvedModuleId":4147}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":682,"sizes":{"javascript":682},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","name":"./node_modules/lodash/isSymbol.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","index":47,"preOrderIndex":47,"index2":39,"postOrderIndex":39,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","issuerName":"./node_modules/lodash/toNumber.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","name":"./node_modules/lodash/toNumber.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":4841}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":3448,"issuerId":4841,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSymbol","loc":"4:15-36","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","module":"./node_modules/lodash/_isKey.js","moduleName":"./node_modules/lodash/_isKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","resolvedModule":"./node_modules/lodash/_isKey.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSymbol","loc":"2:15-36","moduleId":5403,"resolvedModuleId":5403},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","module":"./node_modules/lodash/_toKey.js","moduleName":"./node_modules/lodash/_toKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","resolvedModule":"./node_modules/lodash/_toKey.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSymbol","loc":"1:15-36","moduleId":327,"resolvedModuleId":327},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","module":"./node_modules/lodash/isSymbol.js","moduleName":"./node_modules/lodash/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","resolvedModule":"./node_modules/lodash/isSymbol.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"29:0-14","moduleId":3448,"resolvedModuleId":3448},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSymbol","loc":"3:15-36","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 29:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":695,"sizes":{"javascript":695},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","name":"./node_modules/lodash/isTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","index":26,"preOrderIndex":26,"index2":22,"postOrderIndex":22,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6719,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isTypedArray","loc":"6:19-44","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isTypedArray","loc":"8:19-44","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isTypedArray","loc":"8:19-44","moduleId":1609,"resolvedModuleId":1609},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","module":"./node_modules/lodash/isTypedArray.js","moduleName":"./node_modules/lodash/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","resolvedModule":"./node_modules/lodash/isTypedArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":6719,"resolvedModuleId":6719}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":884,"sizes":{"javascript":884},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","name":"./node_modules/lodash/keys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","index":10,"preOrderIndex":10,"index2":31,"postOrderIndex":31,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","issuerName":"./node_modules/lodash/_createFind.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3674,"issuerId":7740,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","module":"./node_modules/lodash/_baseAssign.js","moduleName":"./node_modules/lodash/_baseAssign.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","resolvedModule":"./node_modules/lodash/_baseAssign.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"2:11-28","moduleId":4037,"resolvedModuleId":4037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"21:11-28","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","module":"./node_modules/lodash/_baseForOwn.js","moduleName":"./node_modules/lodash/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","resolvedModule":"./node_modules/lodash/_baseForOwn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"2:11-28","moduleId":7816,"resolvedModuleId":7816},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","module":"./node_modules/lodash/_createFind.js","moduleName":"./node_modules/lodash/_createFind.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","resolvedModule":"./node_modules/lodash/_createFind.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"3:11-28","moduleId":7740,"resolvedModuleId":7740},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","module":"./node_modules/lodash/_getAllKeys.js","moduleName":"./node_modules/lodash/_getAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","resolvedModule":"./node_modules/lodash/_getAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"3:11-28","moduleId":8234,"resolvedModuleId":8234},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","module":"./node_modules/lodash/_getMatchData.js","moduleName":"./node_modules/lodash/_getMatchData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","resolvedModule":"./node_modules/lodash/_getMatchData.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"2:11-28","moduleId":1499,"resolvedModuleId":1499},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","module":"./node_modules/lodash/keys.js","moduleName":"./node_modules/lodash/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","resolvedModule":"./node_modules/lodash/keys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":3674,"resolvedModuleId":3674},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","module":"./node_modules/lodash/values.js","moduleName":"./node_modules/lodash/values.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","resolvedModule":"./node_modules/lodash/values.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"2:11-28","moduleId":2628,"resolvedModuleId":2628}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:43","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2224,"sizes":{"javascript":2224},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","index":50,"preOrderIndex":50,"index2":71,"postOrderIndex":71,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","issuerName":"./node_modules/lodash/_memoizeCapped.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306,"issuerId":4523,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","module":"./node_modules/lodash/_memoizeCapped.js","moduleName":"./node_modules/lodash/_memoizeCapped.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","resolvedModule":"./node_modules/lodash/_memoizeCapped.js","type":"cjs require","active":true,"explanation":"","userRequest":"./memoize","loc":"1:14-34","moduleId":4523,"resolvedModuleId":4523},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","module":"./node_modules/lodash/memoize.js","moduleName":"./node_modules/lodash/memoize.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","resolvedModule":"./node_modules/lodash/memoize.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"73:0-14","moduleId":8306,"resolvedModuleId":8306}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 73:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":520,"sizes":{"javascript":520},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","name":"./node_modules/lodash/now.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","index":111,"preOrderIndex":111,"index2":108,"postOrderIndex":108,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","issuerName":"./node_modules/lodash/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7771,"issuerId":3279,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs require","active":true,"explanation":"","userRequest":"./now","loc":"2:10-26","moduleId":3279,"resolvedModuleId":3279},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","module":"./node_modules/lodash/now.js","moduleName":"./node_modules/lodash/now.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","resolvedModule":"./node_modules/lodash/now.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":7771,"resolvedModuleId":7771}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":793,"sizes":{"javascript":793},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","name":"./node_modules/lodash/property.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","index":182,"preOrderIndex":182,"index2":172,"postOrderIndex":172,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","issuerName":"./node_modules/lodash/_baseIteratee.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9601,"issuerId":7206,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./property","loc":"5:15-36","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":390,"sizes":{"javascript":390},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubArray.js","name":"./node_modules/lodash/stubArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubArray.js","index":171,"preOrderIndex":171,"index2":152,"postOrderIndex":152,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","issuerName":"./node_modules/lodash/_getSymbols.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","name":"./node_modules/lodash/_getSymbols.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9551}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":479,"issuerId":9551,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","module":"./node_modules/lodash/_getSymbols.js","moduleName":"./node_modules/lodash/_getSymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","resolvedModule":"./node_modules/lodash/_getSymbols.js","type":"cjs require","active":true,"explanation":"","userRequest":"./stubArray","loc":"2:16-38","moduleId":9551,"resolvedModuleId":9551},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","module":"./node_modules/lodash/_getSymbolsIn.js","moduleName":"./node_modules/lodash/_getSymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","resolvedModule":"./node_modules/lodash/_getSymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./stubArray","loc":"4:16-38","moduleId":1442,"resolvedModuleId":1442},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubArray.js","module":"./node_modules/lodash/stubArray.js","moduleName":"./node_modules/lodash/stubArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubArray.js","resolvedModule":"./node_modules/lodash/stubArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":479,"resolvedModuleId":479}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (ExpressionStatement) with side effects in source code at 23:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":280,"sizes":{"javascript":280},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubFalse.js","name":"./node_modules/lodash/stubFalse.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubFalse.js","index":24,"preOrderIndex":24,"index2":15,"postOrderIndex":15,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","issuerName":"./node_modules/lodash/isBuffer.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","name":"./node_modules/lodash/isBuffer.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4144}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5062,"issuerId":4144,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs require","active":true,"explanation":"","userRequest":"./stubFalse","loc":"2:16-38","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubFalse.js","module":"./node_modules/lodash/stubFalse.js","moduleName":"./node_modules/lodash/stubFalse.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubFalse.js","resolvedModule":"./node_modules/lodash/stubFalse.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":5062,"resolvedModuleId":5062}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (ExpressionStatement) with side effects in source code at 18:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":868,"sizes":{"javascript":868},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","name":"./node_modules/lodash/toFinite.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","index":378,"preOrderIndex":378,"index2":373,"postOrderIndex":373,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toInteger.js","issuerName":"./node_modules/lodash/toInteger.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toInteger.js","name":"./node_modules/lodash/toInteger.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":5,"additionalIntegration":0,"factory":0,"dependencies":5},"id":554}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8601,"issuerId":554,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","module":"./node_modules/lodash/toFinite.js","moduleName":"./node_modules/lodash/toFinite.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","resolvedModule":"./node_modules/lodash/toFinite.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"42:0-14","moduleId":8601,"resolvedModuleId":8601},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toInteger.js","module":"./node_modules/lodash/toInteger.js","moduleName":"./node_modules/lodash/toInteger.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toInteger.js","resolvedModule":"./node_modules/lodash/toInteger.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toFinite","loc":"1:15-36","moduleId":554,"resolvedModuleId":554}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 42:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":760,"sizes":{"javascript":760},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toInteger.js","name":"./node_modules/lodash/toInteger.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toInteger.js","index":377,"preOrderIndex":377,"index2":374,"postOrderIndex":374,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","issuerName":"./node_modules/lodash/includes.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":5,"additionalIntegration":0,"factory":0,"dependencies":5},"id":554,"issuerId":4721,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","module":"./node_modules/lodash/findIndex.js","moduleName":"./node_modules/lodash/findIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","resolvedModule":"./node_modules/lodash/findIndex.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toInteger","loc":"3:16-38","moduleId":998,"resolvedModuleId":998},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","module":"./node_modules/lodash/includes.js","moduleName":"./node_modules/lodash/includes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","resolvedModule":"./node_modules/lodash/includes.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toInteger","loc":"4:16-38","moduleId":4721,"resolvedModuleId":4721},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toInteger.js","module":"./node_modules/lodash/toInteger.js","moduleName":"./node_modules/lodash/toInteger.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toInteger.js","resolvedModule":"./node_modules/lodash/toInteger.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"36:0-14","moduleId":554,"resolvedModuleId":554}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 36:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1519,"sizes":{"javascript":1519},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","name":"./node_modules/lodash/toNumber.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","index":112,"preOrderIndex":112,"index2":111,"postOrderIndex":111,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","issuerName":"./node_modules/lodash/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":4841,"issuerId":3279,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toNumber","loc":"3:15-36","moduleId":3279,"resolvedModuleId":3279},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","module":"./node_modules/lodash/toFinite.js","moduleName":"./node_modules/lodash/toFinite.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","resolvedModule":"./node_modules/lodash/toFinite.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toNumber","loc":"1:15-36","moduleId":8601,"resolvedModuleId":8601},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"64:0-14","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 64:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":580,"sizes":{"javascript":580},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","name":"./node_modules/lodash/toString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","index":81,"preOrderIndex":81,"index2":76,"postOrderIndex":76,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","issuerName":"./node_modules/lodash/_castPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9833,"issuerId":1811,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toString","loc":"4:15-36","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","module":"./node_modules/lodash/toString.js","moduleName":"./node_modules/lodash/toString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","resolvedModule":"./node_modules/lodash/toString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"28:0-14","moduleId":9833,"resolvedModuleId":9833}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 28:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":733,"sizes":{"javascript":733},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","name":"./node_modules/lodash/values.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","index":387,"preOrderIndex":387,"index2":385,"postOrderIndex":385,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","issuerName":"./node_modules/lodash/includes.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2628,"issuerId":4721,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","module":"./node_modules/lodash/includes.js","moduleName":"./node_modules/lodash/includes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","resolvedModule":"./node_modules/lodash/includes.js","type":"cjs require","active":true,"explanation":"","userRequest":"./values","loc":"5:13-32","moduleId":4721,"resolvedModuleId":4721},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","module":"./node_modules/lodash/values.js","moduleName":"./node_modules/lodash/values.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","resolvedModule":"./node_modules/lodash/values.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"34:0-14","moduleId":2628,"resolvedModuleId":2628}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 34:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6827,"sizes":{"javascript":6827},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","name":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","index":124,"preOrderIndex":124,"index2":118,"postOrderIndex":118,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","issuerName":"./src/_js/customizer-preview/style.scss","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./src/_js/customizer-preview/style.scss","profile":{"total":352,"resolving":326,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":326,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3379,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-95","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-95","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","module":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","moduleName":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","resolvedModule":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"230:0-14","moduleId":3379,"resolvedModuleId":3379}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 230:0-14","Statement (VariableDeclaration) with side effects in source code at 3:0-17:4","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/esm","layer":null,"size":28466,"sizes":{"javascript":28466},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","name":"./src/_js/customizer-preview/index.js + 2 modules","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","index":369,"preOrderIndex":369,"index2":388,"postOrderIndex":388,"cacheable":true,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":2961,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer-preview/index.js","loc":"customizerPreview","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer-preview/index.js","loc":"customizerPreview.min","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null}],"usedExports":true,"providedExports":["default"],"optimizationBailout":["ModuleConcatenation bailout: Cannot concat with ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss: Module uses module.id","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/debounce.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/each.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/find.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/has.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/includes.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/isEmpty.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/isNumber.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/isString.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with external \"jQuery\": Module is not in strict mode"],"depth":0,"modules":[{"type":"module","moduleType":"javascript/auto","layer":null,"size":5636,"sizes":{"javascript":5636},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","index":369,"preOrderIndex":369,"index2":388,"postOrderIndex":388,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":null,"issuerName":null,"issuerPath":null,"failed":false,"errors":0,"warnings":0,"profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[],"usedExports":true,"providedExports":["default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 14:0-23"],"depth":0},{"type":"module","moduleType":"javascript/auto","layer":null,"size":385,"sizes":{"javascript":385},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./src/_js/customizer-preview/style.scss","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","index":370,"preOrderIndex":370,"index2":370,"postOrderIndex":370,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":352,"resolving":326,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":326,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./style.scss","loc":"11:0-22","moduleId":null,"resolvedModuleId":null}],"usedExports":[],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-17"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":22445,"sizes":{"javascript":22445},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","index":372,"preOrderIndex":372,"index2":387,"postOrderIndex":387,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"13:0-89","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"112:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"113:23-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"114:15-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["getFontFieldCSSCode","getFontFieldCSSValue","maybeLoadFontFamily"],"providedExports":["getFieldUnit","getFontFieldCSSCode","getFontFieldCSSValue","maybeLoadFontFamily"],"optimizationBailout":[],"depth":1}]},{"type":"module","moduleType":"javascript/dynamic","layer":null,"size":42,"sizes":{"javascript":42},"built":true,"codeGenerated":true,"cached":false,"identifier":"external \"jQuery\"","name":"external \"jQuery\"","nameForCondition":null,"index":1,"preOrderIndex":1,"index2":0,"postOrderIndex":0,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3609,"issuerId":null,"chunks":[81,104,290,527,628,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"12:0-23","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"33:6-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:6-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"11:0-23","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"158:29-37","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"247:2-8","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"11:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"158:29-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"247:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"5:25-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"25:27-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"26:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"34:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"35:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"43:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"44:25-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"59:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"72:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"82:4-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"86:8-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"101:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"111:4-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"10:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"12:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:34-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:29-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"26:29-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"37:13-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"5:23-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"31:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"13:2-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"20:2-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"21:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"27:11-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"27:24-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"68:8-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"69:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"81:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"82:33-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"86:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"87:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"95:8-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"102:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"103:33-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"107:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"108:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"115:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"116:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"119:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"145:8-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:22-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"7:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"9:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"25:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"35:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"39:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"2:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"9:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"11:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"62:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"75:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:27-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"10:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"21:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:18-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"24:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"34:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","module":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","moduleName":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","module":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","moduleName":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"57:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","module":"./src/_js/customizer/fonts/utils/update-font-head-title.js","moduleName":"./src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","module":"./src/_js/customizer/fonts/utils/update-font-head-title.js","moduleName":"./src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","module":"./src/_js/customizer/fonts/utils/update-variant-field.js","moduleName":"./src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","module":"./src/_js/customizer/fonts/utils/update-variant-field.js","moduleName":"./src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"40:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"5:25-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"25:27-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"26:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"34:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"35:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"43:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"44:25-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"59:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"72:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"82:4-10","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"86:8-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"101:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"111:4-10","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"10:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"12:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:34-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:29-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"26:29-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"37:13-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"5:23-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"31:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"13:2-33","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"20:2-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"21:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"27:11-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"27:24-44","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"68:8-9","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"69:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"81:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"82:33-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"86:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"87:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"95:8-9","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"102:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"103:33-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"107:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"108:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"115:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"116:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"119:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"145:8-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:22-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"7:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"9:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"25:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"35:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"39:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"2:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"9:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"11:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"62:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"75:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:27-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"10:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"21:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:18-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"24:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"34:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"57:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"40:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"6:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:23-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"6:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:23-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"9:0-23","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"13:12-13","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:20-21","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:17-18","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"23:31-32","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"44:6-7","moduleId":4299,"resolvedModuleId":4299}],"usedExports":true,"providedExports":null,"optimizationBailout":["ModuleConcatenation bailout: Module is not in strict mode"],"depth":1},{"type":"module","moduleType":"runtime","layer":null,"size":302,"sizes":{"runtime":302},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/compat get default export","name":"webpack/runtime/compat get default export","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[104],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":313,"sizes":{"runtime":313},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/define property getters","name":"webpack/runtime/define property getters","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[104],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":221,"sizes":{"runtime":221},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/global","name":"webpack/runtime/global","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[104],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":103,"sizes":{"runtime":103},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/hasOwnProperty shorthand","name":"webpack/runtime/hasOwnProperty shorthand","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[104],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":279,"sizes":{"runtime":279},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/make namespace object","name":"webpack/runtime/make namespace object","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[104],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":128,"sizes":{"runtime":128},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/node module decorator","name":"webpack/runtime/node module decorator","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[104],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null}],"origins":[{"module":"","moduleIdentifier":"","moduleName":"","loc":"customizerPreview","request":"./src/_js/customizer-preview/index.js"}]},{"rendered":true,"initial":true,"entry":true,"recorded":false,"size":556740,"sizes":{"javascript":555394,"runtime":1346},"names":["customizer"],"idHints":[],"runtime":["customizer"],"files":["customizer.js"],"auxiliaryFiles":[],"hash":"7119dd09e8ba0f76823a","childrenByOrder":{},"id":290,"siblings":[],"parents":[],"children":[],"modules":[{"type":"module","moduleType":"javascript/auto","layer":null,"size":100003,"sizes":{"javascript":100003},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","name":"./node_modules/chroma-js/chroma.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","index":119,"preOrderIndex":119,"index2":114,"postOrderIndex":114,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","issuerName":"./src/_js/customizer/colors/components/builder/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","name":"./src/_js/customizer/colors/components/builder/utils.js","profile":{"total":804,"resolving":364,"restoring":0,"building":440,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":364,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5792,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"chroma-js","loc":"20:0-31","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"91:12-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"92:13-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"93:15-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"94:14-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"191:16-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"210:13-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"252:17-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"254:26-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"254:58-64","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"266:8-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"285:9-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"390:11-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"390:36-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"394:11-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"396:11-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"chroma-js","loc":"20:0-31","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"91:12-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"92:13-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"93:15-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"94:14-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"191:16-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"210:13-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"252:17-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"254:26-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"254:58-64","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"266:8-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"285:9-15","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"390:11-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"390:36-42","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"394:11-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"396:11-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","module":"./node_modules/chroma-js/chroma.js","moduleName":"./node_modules/chroma-js/chroma.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","resolvedModule":"./node_modules/chroma-js/chroma.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"59:67-81","moduleId":5792,"resolvedModuleId":5792},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","module":"./node_modules/chroma-js/chroma.js","moduleName":"./node_modules/chroma-js/chroma.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","resolvedModule":"./node_modules/chroma-js/chroma.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"62:2-6","moduleId":5792,"resolvedModuleId":5792}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: this is used directly at 62:2-6","CommonJS bailout: module.exports is used directly at 59:67-81","Statement (ExpressionStatement) with side effects in source code at 58:0-3225:5","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1677,"sizes":{"javascript":1677},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","name":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","index":350,"preOrderIndex":350,"index2":343,"postOrderIndex":343,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","issuerName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","name":"./src/_js/customizer/colors/components/contextual-menu/index.js","profile":{"total":241,"resolving":131,"restoring":0,"building":110,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":131,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","name":"./src/_js/customizer/colors/components/contextual-menu/style.scss","profile":{"total":7,"resolving":6,"restoring":0,"building":1,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":100,"resolving":1,"restoring":0,"building":99,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3708,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"2:12-158","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"9:17-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"13:15-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"2:12-158","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"9:17-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"13:15-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 3:0-84","ModuleConcatenation bailout: Module uses module.id"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2835,"sizes":{"javascript":2835},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","name":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","index":125,"preOrderIndex":125,"index2":120,"postOrderIndex":120,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","issuerName":"./src/_js/customizer/colors/components/source-colors/style.scss","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","name":"./src/_js/customizer/colors/components/source-colors/style.scss","profile":{"total":16,"resolving":15,"restoring":0,"building":1,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":15,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":153,"resolving":2,"restoring":0,"building":151,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":2,"dependencies":0},"id":9805,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"2:12-158","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"9:17-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"13:15-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"2:12-158","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"9:17-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"13:15-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 3:0-84","ModuleConcatenation bailout: Module uses module.id"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1605,"sizes":{"javascript":1605},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/runtime/api.js","name":"./node_modules/css-loader/dist/runtime/api.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/runtime/api.js","index":126,"preOrderIndex":126,"index2":119,"postOrderIndex":119,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","issuerName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./src/_js/customizer-preview/style.scss","profile":{"total":352,"resolving":326,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":326,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","profile":{"total":728,"resolving":3,"restoring":0,"building":725,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":946}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3645,"issuerId":946,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../../node_modules/css-loader/dist/runtime/api.js","loc":"2:0-95","moduleId":946,"resolvedModuleId":946},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../node_modules/css-loader/dist/runtime/api.js","loc":"3:30-57","moduleId":946,"resolvedModuleId":946},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../../../../../node_modules/css-loader/dist/runtime/api.js","loc":"2:0-104","moduleId":3708,"resolvedModuleId":3708},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../../../../node_modules/css-loader/dist/runtime/api.js","loc":"3:30-57","moduleId":3708,"resolvedModuleId":3708},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../../../../../node_modules/css-loader/dist/runtime/api.js","loc":"2:0-104","moduleId":9805,"resolvedModuleId":9805},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../../../../node_modules/css-loader/dist/runtime/api.js","loc":"3:30-57","moduleId":9805,"resolvedModuleId":9805},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/runtime/api.js","module":"./node_modules/css-loader/dist/runtime/api.js","moduleName":"./node_modules/css-loader/dist/runtime/api.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/runtime/api.js","resolvedModule":"./node_modules/css-loader/dist/runtime/api.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"9:0-14","moduleId":3645,"resolvedModuleId":3645}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 9:0-14","Statement (ExpressionStatement) with side effects in source code at 9:0-66:2","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":9421,"sizes":{"javascript":9421},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/hsluv/hsluv.js","name":"./node_modules/hsluv/hsluv.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/hsluv/hsluv.js","index":118,"preOrderIndex":118,"index2":113,"postOrderIndex":113,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","issuerName":"./src/_js/customizer/colors/components/builder/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","name":"./src/_js/customizer/colors/components/builder/utils.js","profile":{"total":804,"resolving":364,"restoring":0,"building":440,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":364,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":119,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"hsluv","loc":"19:0-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"hsluv","loc":"278:14-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"hsluv","loc":"282:12-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"hsluv","loc":"19:0-47","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"hsluv","loc":"278:14-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"hsluv","loc":"282:12-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/hsluv/hsluv.js","module":"./node_modules/hsluv/hsluv.js","moduleName":"./node_modules/hsluv/hsluv.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/hsluv/hsluv.js","resolvedModule":"./node_modules/hsluv/hsluv.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"329:0-14","moduleId":119,"resolvedModuleId":119}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 329:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-24","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":210,"sizes":{"javascript":210},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","index":173,"preOrderIndex":173,"index2":156,"postOrderIndex":156,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","module":"./node_modules/lodash/_DataView.js","moduleName":"./node_modules/lodash/_DataView.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","resolvedModule":"./node_modules/lodash/_DataView.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":8552,"resolvedModuleId":8552},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_DataView","loc":"1:15-37","moduleId":4160,"resolvedModuleId":4160}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":747,"sizes":{"javascript":747},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","index":53,"preOrderIndex":53,"index2":53,"postOrderIndex":53,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","issuerName":"./node_modules/lodash/_mapCacheClear.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989,"issuerId":4785,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","module":"./node_modules/lodash/_mapCacheClear.js","moduleName":"./node_modules/lodash/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","resolvedModule":"./node_modules/lodash/_mapCacheClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Hash","loc":"1:11-29","moduleId":4785,"resolvedModuleId":4785}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":869,"sizes":{"javascript":869},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","index":66,"preOrderIndex":66,"index2":61,"postOrderIndex":61,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_ListCache","loc":"1:16-39","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","module":"./node_modules/lodash/_mapCacheClear.js","moduleName":"./node_modules/lodash/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","resolvedModule":"./node_modules/lodash/_mapCacheClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_ListCache","loc":"2:16-39","moduleId":4785,"resolvedModuleId":4785},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","module":"./node_modules/lodash/_stackClear.js","moduleName":"./node_modules/lodash/_stackClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","resolvedModule":"./node_modules/lodash/_stackClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_ListCache","loc":"1:16-39","moduleId":7465,"resolvedModuleId":7465},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","module":"./node_modules/lodash/_stackSet.js","moduleName":"./node_modules/lodash/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","resolvedModule":"./node_modules/lodash/_stackSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_ListCache","loc":"1:16-39","moduleId":4309,"resolvedModuleId":4309}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":195,"sizes":{"javascript":195},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","name":"./node_modules/lodash/_Map.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","index":74,"preOrderIndex":74,"index2":62,"postOrderIndex":62,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7071,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","module":"./node_modules/lodash/_Map.js","moduleName":"./node_modules/lodash/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","resolvedModule":"./node_modules/lodash/_Map.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":7071,"resolvedModuleId":7071},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Map","loc":"2:10-27","moduleId":4160,"resolvedModuleId":4160},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","module":"./node_modules/lodash/_mapCacheClear.js","moduleName":"./node_modules/lodash/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","resolvedModule":"./node_modules/lodash/_mapCacheClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Map","loc":"3:10-27","moduleId":4785,"resolvedModuleId":4785},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","module":"./node_modules/lodash/_stackSet.js","moduleName":"./node_modules/lodash/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","resolvedModule":"./node_modules/lodash/_stackSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Map","loc":"2:10-27","moduleId":4309,"resolvedModuleId":4309}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":869,"sizes":{"javascript":869},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","index":51,"preOrderIndex":51,"index2":70,"postOrderIndex":70,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","issuerName":"./node_modules/lodash/memoize.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369,"issuerId":8306,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","module":"./node_modules/lodash/_SetCache.js","moduleName":"./node_modules/lodash/_SetCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","resolvedModule":"./node_modules/lodash/_SetCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_MapCache","loc":"1:15-37","moduleId":8668,"resolvedModuleId":8668},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","module":"./node_modules/lodash/_stackSet.js","moduleName":"./node_modules/lodash/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","resolvedModule":"./node_modules/lodash/_stackSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_MapCache","loc":"3:15-37","moduleId":4309,"resolvedModuleId":4309},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","module":"./node_modules/lodash/memoize.js","moduleName":"./node_modules/lodash/memoize.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","resolvedModule":"./node_modules/lodash/memoize.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_MapCache","loc":"1:15-37","moduleId":8306,"resolvedModuleId":8306}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":207,"sizes":{"javascript":207},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","name":"./node_modules/lodash/_Promise.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","index":174,"preOrderIndex":174,"index2":157,"postOrderIndex":157,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3818,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","module":"./node_modules/lodash/_Promise.js","moduleName":"./node_modules/lodash/_Promise.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","resolvedModule":"./node_modules/lodash/_Promise.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":3818,"resolvedModuleId":3818},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Promise","loc":"3:14-35","moduleId":4160,"resolvedModuleId":4160}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":195,"sizes":{"javascript":195},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","name":"./node_modules/lodash/_Set.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","index":175,"preOrderIndex":175,"index2":158,"postOrderIndex":158,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8525,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","module":"./node_modules/lodash/_Set.js","moduleName":"./node_modules/lodash/_Set.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","resolvedModule":"./node_modules/lodash/_Set.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":8525,"resolvedModuleId":8525},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Set","loc":"4:10-27","moduleId":4160,"resolvedModuleId":4160}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":632,"sizes":{"javascript":632},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","name":"./node_modules/lodash/_SetCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","index":157,"preOrderIndex":157,"index2":142,"postOrderIndex":142,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","issuerName":"./node_modules/lodash/_equalArrays.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8668,"issuerId":7114,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","module":"./node_modules/lodash/_SetCache.js","moduleName":"./node_modules/lodash/_SetCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","resolvedModule":"./node_modules/lodash/_SetCache.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":8668,"resolvedModuleId":8668},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","module":"./node_modules/lodash/_equalArrays.js","moduleName":"./node_modules/lodash/_equalArrays.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","resolvedModule":"./node_modules/lodash/_equalArrays.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_SetCache","loc":"1:15-37","moduleId":7114,"resolvedModuleId":7114}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":734,"sizes":{"javascript":734},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","index":148,"preOrderIndex":148,"index2":139,"postOrderIndex":139,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","issuerName":"./node_modules/lodash/_baseIsMatch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384,"issuerId":2958,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Stack","loc":"1:12-31","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Stack","loc":"1:12-31","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","module":"./node_modules/lodash/_baseIsMatch.js","moduleName":"./node_modules/lodash/_baseIsMatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","resolvedModule":"./node_modules/lodash/_baseIsMatch.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Stack","loc":"1:12-31","moduleId":2958,"resolvedModuleId":2958}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-6:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":118,"sizes":{"javascript":118},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","name":"./node_modules/lodash/_Symbol.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","index":16,"preOrderIndex":16,"index2":7,"postOrderIndex":7,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","issuerName":"./node_modules/lodash/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","name":"./node_modules/lodash/_baseGetTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4239}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":2705,"issuerId":4239,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","module":"./node_modules/lodash/_Symbol.js","moduleName":"./node_modules/lodash/_Symbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","resolvedModule":"./node_modules/lodash/_Symbol.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":2705,"resolvedModuleId":2705},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","module":"./node_modules/lodash/_baseGetTag.js","moduleName":"./node_modules/lodash/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","resolvedModule":"./node_modules/lodash/_baseGetTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":4239,"resolvedModuleId":4239},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneSymbol.js","module":"./node_modules/lodash/_cloneSymbol.js","moduleName":"./node_modules/lodash/_cloneSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneSymbol.js","resolvedModule":"./node_modules/lodash/_cloneSymbol.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":419,"resolvedModuleId":419},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":8351,"resolvedModuleId":8351},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","module":"./node_modules/lodash/_getRawTag.js","moduleName":"./node_modules/lodash/_getRawTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","resolvedModule":"./node_modules/lodash/_getRawTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":9607,"resolvedModuleId":9607},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","module":"./node_modules/lodash/_isFlattenable.js","moduleName":"./node_modules/lodash/_isFlattenable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","resolvedModule":"./node_modules/lodash/_isFlattenable.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":7285,"resolvedModuleId":7285}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":130,"sizes":{"javascript":130},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","name":"./node_modules/lodash/_Uint8Array.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","index":163,"preOrderIndex":163,"index2":146,"postOrderIndex":146,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","issuerName":"./node_modules/lodash/_equalByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","name":"./node_modules/lodash/_equalByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8351}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":1149,"issuerId":8351,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","module":"./node_modules/lodash/_Uint8Array.js","moduleName":"./node_modules/lodash/_Uint8Array.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","resolvedModule":"./node_modules/lodash/_Uint8Array.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":1149,"resolvedModuleId":1149},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneArrayBuffer.js","module":"./node_modules/lodash/_cloneArrayBuffer.js","moduleName":"./node_modules/lodash/_cloneArrayBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneArrayBuffer.js","resolvedModule":"./node_modules/lodash/_cloneArrayBuffer.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Uint8Array","loc":"1:17-41","moduleId":4318,"resolvedModuleId":4318},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Uint8Array","loc":"2:17-41","moduleId":8351,"resolvedModuleId":8351}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":207,"sizes":{"javascript":207},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","name":"./node_modules/lodash/_WeakMap.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","index":176,"preOrderIndex":176,"index2":159,"postOrderIndex":159,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":577,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","module":"./node_modules/lodash/_WeakMap.js","moduleName":"./node_modules/lodash/_WeakMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","resolvedModule":"./node_modules/lodash/_WeakMap.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":577,"resolvedModuleId":577},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_WeakMap","loc":"5:14-35","moduleId":4160,"resolvedModuleId":4160}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":714,"sizes":{"javascript":714},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_apply.js","name":"./node_modules/lodash/_apply.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_apply.js","index":98,"preOrderIndex":98,"index2":93,"postOrderIndex":93,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overRest.js","issuerName":"./node_modules/lodash/_overRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overRest.js","name":"./node_modules/lodash/_overRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5357}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6874,"issuerId":5357,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_apply.js","module":"./node_modules/lodash/_apply.js","moduleName":"./node_modules/lodash/_apply.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_apply.js","resolvedModule":"./node_modules/lodash/_apply.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":6874,"resolvedModuleId":6874},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overRest.js","module":"./node_modules/lodash/_overRest.js","moduleName":"./node_modules/lodash/_overRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overRest.js","resolvedModule":"./node_modules/lodash/_overRest.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_apply","loc":"1:12-31","moduleId":5357,"resolvedModuleId":5357}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (ExpressionStatement) with side effects in source code at 21:0-23","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":537,"sizes":{"javascript":537},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayEach.js","name":"./node_modules/lodash/_arrayEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayEach.js","index":5,"preOrderIndex":5,"index2":1,"postOrderIndex":1,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","issuerName":"./node_modules/lodash/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7412,"issuerId":4486,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayEach.js","module":"./node_modules/lodash/_arrayEach.js","moduleName":"./node_modules/lodash/_arrayEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayEach.js","resolvedModule":"./node_modules/lodash/_arrayEach.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":7412,"resolvedModuleId":7412},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayEach","loc":"2:16-39","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayEach","loc":"1:16-39","moduleId":4486,"resolvedModuleId":4486}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (ExpressionStatement) with side effects in source code at 22:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":632,"sizes":{"javascript":632},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayFilter.js","name":"./node_modules/lodash/_arrayFilter.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayFilter.js","index":170,"preOrderIndex":170,"index2":151,"postOrderIndex":151,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","issuerName":"./node_modules/lodash/_getSymbols.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","name":"./node_modules/lodash/_getSymbols.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9551}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4963,"issuerId":9551,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayFilter.js","module":"./node_modules/lodash/_arrayFilter.js","moduleName":"./node_modules/lodash/_arrayFilter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayFilter.js","resolvedModule":"./node_modules/lodash/_arrayFilter.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":4963,"resolvedModuleId":4963},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","module":"./node_modules/lodash/_getSymbols.js","moduleName":"./node_modules/lodash/_getSymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","resolvedModule":"./node_modules/lodash/_getSymbols.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayFilter","loc":"1:18-43","moduleId":9551,"resolvedModuleId":9551}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (ExpressionStatement) with side effects in source code at 25:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1778,"sizes":{"javascript":1778},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","name":"./node_modules/lodash/_arrayLikeKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","index":11,"preOrderIndex":11,"index2":23,"postOrderIndex":23,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","issuerName":"./node_modules/lodash/keys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","name":"./node_modules/lodash/keys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3674}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4636,"issuerId":3674,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"49:0-14","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","module":"./node_modules/lodash/keys.js","moduleName":"./node_modules/lodash/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","resolvedModule":"./node_modules/lodash/keys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayLikeKeys","loc":"1:20-47","moduleId":3674,"resolvedModuleId":3674},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","module":"./node_modules/lodash/keysIn.js","moduleName":"./node_modules/lodash/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","resolvedModule":"./node_modules/lodash/keysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayLikeKeys","loc":"1:20-47","moduleId":1704,"resolvedModuleId":1704}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 49:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-6:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":556,"sizes":{"javascript":556},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayMap.js","name":"./node_modules/lodash/_arrayMap.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayMap.js","index":83,"preOrderIndex":83,"index2":74,"postOrderIndex":74,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","issuerName":"./node_modules/lodash/_baseValues.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","name":"./node_modules/lodash/values.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2628},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","name":"./node_modules/lodash/_baseValues.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7415}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9932,"issuerId":7415,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayMap.js","module":"./node_modules/lodash/_arrayMap.js","moduleName":"./node_modules/lodash/_arrayMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayMap.js","resolvedModule":"./node_modules/lodash/_arrayMap.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":9932,"resolvedModuleId":9932},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayMap","loc":"2:15-37","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","module":"./node_modules/lodash/_baseValues.js","moduleName":"./node_modules/lodash/_baseValues.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","resolvedModule":"./node_modules/lodash/_baseValues.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayMap","loc":"1:15-37","moduleId":7415,"resolvedModuleId":7415},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","module":"./node_modules/lodash/map.js","moduleName":"./node_modules/lodash/map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","resolvedModule":"./node_modules/lodash/map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayMap","loc":"1:15-37","moduleId":5161,"resolvedModuleId":5161}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (ExpressionStatement) with side effects in source code at 21:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":437,"sizes":{"javascript":437},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayPush.js","name":"./node_modules/lodash/_arrayPush.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayPush.js","index":95,"preOrderIndex":95,"index2":89,"postOrderIndex":89,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","issuerName":"./node_modules/lodash/_baseFlatten.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","name":"./node_modules/lodash/flatten.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5564},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","name":"./node_modules/lodash/_baseFlatten.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1078}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":2488,"issuerId":1078,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayPush.js","module":"./node_modules/lodash/_arrayPush.js","moduleName":"./node_modules/lodash/_arrayPush.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayPush.js","resolvedModule":"./node_modules/lodash/_arrayPush.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":2488,"resolvedModuleId":2488},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","module":"./node_modules/lodash/_baseFlatten.js","moduleName":"./node_modules/lodash/_baseFlatten.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","resolvedModule":"./node_modules/lodash/_baseFlatten.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayPush","loc":"1:16-39","moduleId":1078,"resolvedModuleId":1078},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","module":"./node_modules/lodash/_baseGetAllKeys.js","moduleName":"./node_modules/lodash/_baseGetAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","resolvedModule":"./node_modules/lodash/_baseGetAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayPush","loc":"1:16-39","moduleId":8866,"resolvedModuleId":8866},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","module":"./node_modules/lodash/_getSymbolsIn.js","moduleName":"./node_modules/lodash/_getSymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","resolvedModule":"./node_modules/lodash/_getSymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayPush","loc":"1:16-39","moduleId":1442,"resolvedModuleId":1442}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (ExpressionStatement) with side effects in source code at 20:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":594,"sizes":{"javascript":594},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arraySome.js","name":"./node_modules/lodash/_arraySome.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arraySome.js","index":160,"preOrderIndex":160,"index2":143,"postOrderIndex":143,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","issuerName":"./node_modules/lodash/_equalArrays.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2908,"issuerId":7114,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arraySome.js","module":"./node_modules/lodash/_arraySome.js","moduleName":"./node_modules/lodash/_arraySome.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arraySome.js","resolvedModule":"./node_modules/lodash/_arraySome.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":2908,"resolvedModuleId":2908},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","module":"./node_modules/lodash/_equalArrays.js","moduleName":"./node_modules/lodash/_equalArrays.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","resolvedModule":"./node_modules/lodash/_equalArrays.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arraySome","loc":"2:16-39","moduleId":7114,"resolvedModuleId":7114}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (ExpressionStatement) with side effects in source code at 23:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":899,"sizes":{"javascript":899},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","name":"./node_modules/lodash/_assignValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","index":86,"preOrderIndex":86,"index2":82,"postOrderIndex":82,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","issuerName":"./node_modules/lodash/_baseSet.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","name":"./node_modules/lodash/_basePickBy.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3012},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","name":"./node_modules/lodash/_baseSet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":611}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4865,"issuerId":611,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","module":"./node_modules/lodash/_assignValue.js","moduleName":"./node_modules/lodash/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","resolvedModule":"./node_modules/lodash/_assignValue.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"28:0-14","moduleId":4865,"resolvedModuleId":4865},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assignValue","loc":"3:18-43","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assignValue","loc":"1:18-43","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyObject.js","module":"./node_modules/lodash/_copyObject.js","moduleName":"./node_modules/lodash/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyObject.js","resolvedModule":"./node_modules/lodash/_copyObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assignValue","loc":"1:18-43","moduleId":8363,"resolvedModuleId":8363}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 28:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:25","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":487,"sizes":{"javascript":487},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","name":"./node_modules/lodash/_assocIndexOf.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","index":69,"preOrderIndex":69,"index2":56,"postOrderIndex":56,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","issuerName":"./node_modules/lodash/_listCacheDelete.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","name":"./node_modules/lodash/_listCacheDelete.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4125}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8470,"issuerId":4125,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","module":"./node_modules/lodash/_assocIndexOf.js","moduleName":"./node_modules/lodash/_assocIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","resolvedModule":"./node_modules/lodash/_assocIndexOf.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":8470,"resolvedModuleId":8470},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","module":"./node_modules/lodash/_listCacheDelete.js","moduleName":"./node_modules/lodash/_listCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","resolvedModule":"./node_modules/lodash/_listCacheDelete.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assocIndexOf","loc":"1:19-45","moduleId":4125,"resolvedModuleId":4125},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","module":"./node_modules/lodash/_listCacheGet.js","moduleName":"./node_modules/lodash/_listCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","resolvedModule":"./node_modules/lodash/_listCacheGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assocIndexOf","loc":"1:19-45","moduleId":2117,"resolvedModuleId":2117},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","module":"./node_modules/lodash/_listCacheHas.js","moduleName":"./node_modules/lodash/_listCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","resolvedModule":"./node_modules/lodash/_listCacheHas.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assocIndexOf","loc":"1:19-45","moduleId":7529,"resolvedModuleId":7529},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","module":"./node_modules/lodash/_listCacheSet.js","moduleName":"./node_modules/lodash/_listCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","resolvedModule":"./node_modules/lodash/_listCacheSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assocIndexOf","loc":"1:19-45","moduleId":4705,"resolvedModuleId":4705}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-25","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":470,"sizes":{"javascript":470},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","name":"./node_modules/lodash/_baseAssign.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","index":189,"preOrderIndex":189,"index2":178,"postOrderIndex":178,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4037,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","module":"./node_modules/lodash/_baseAssign.js","moduleName":"./node_modules/lodash/_baseAssign.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","resolvedModule":"./node_modules/lodash/_baseAssign.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"17:0-14","moduleId":4037,"resolvedModuleId":4037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseAssign","loc":"4:17-41","moduleId":5990,"resolvedModuleId":5990}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 17:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":482,"sizes":{"javascript":482},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignIn.js","name":"./node_modules/lodash/_baseAssignIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignIn.js","index":191,"preOrderIndex":191,"index2":182,"postOrderIndex":182,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3886,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignIn.js","module":"./node_modules/lodash/_baseAssignIn.js","moduleName":"./node_modules/lodash/_baseAssignIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignIn.js","resolvedModule":"./node_modules/lodash/_baseAssignIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"17:0-14","moduleId":3886,"resolvedModuleId":3886},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseAssignIn","loc":"5:19-45","moduleId":5990,"resolvedModuleId":5990}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 17:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:33","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":625,"sizes":{"javascript":625},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignValue.js","name":"./node_modules/lodash/_baseAssignValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignValue.js","index":87,"preOrderIndex":87,"index2":81,"postOrderIndex":81,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","issuerName":"./node_modules/lodash/_assignValue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","name":"./node_modules/lodash/_basePickBy.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3012},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","name":"./node_modules/lodash/_baseSet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":611},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","name":"./node_modules/lodash/_assignValue.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4865}],"failed":false,"errors":0,"warnings":0,"profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":1,"dependencies":1},"id":9465,"issuerId":4865,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","module":"./node_modules/lodash/_assignValue.js","moduleName":"./node_modules/lodash/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","resolvedModule":"./node_modules/lodash/_assignValue.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseAssignValue","loc":"1:22-51","moduleId":4865,"resolvedModuleId":4865},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignValue.js","module":"./node_modules/lodash/_baseAssignValue.js","moduleName":"./node_modules/lodash/_baseAssignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignValue.js","resolvedModule":"./node_modules/lodash/_baseAssignValue.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":9465,"resolvedModuleId":9465},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyObject.js","module":"./node_modules/lodash/_copyObject.js","moduleName":"./node_modules/lodash/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyObject.js","resolvedModule":"./node_modules/lodash/_copyObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseAssignValue","loc":"2:22-51","moduleId":8363,"resolvedModuleId":8363}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-50","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":5609,"sizes":{"javascript":5609},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","index":188,"preOrderIndex":188,"index2":202,"postOrderIndex":202,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","issuerName":"./node_modules/lodash/cloneDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990,"issuerId":361,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"166:0-14","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","module":"./node_modules/lodash/cloneDeep.js","moduleName":"./node_modules/lodash/cloneDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","resolvedModule":"./node_modules/lodash/cloneDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseClone","loc":"1:16-39","moduleId":361,"resolvedModuleId":361}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 166:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-22:33","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":686,"sizes":{"javascript":686},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","name":"./node_modules/lodash/_baseCreate.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","index":209,"preOrderIndex":209,"index2":196,"postOrderIndex":196,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","issuerName":"./node_modules/lodash/_initCloneObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","name":"./node_modules/lodash/_initCloneObject.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8517}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3118,"issuerId":8517,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","module":"./node_modules/lodash/_baseCreate.js","moduleName":"./node_modules/lodash/_baseCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","resolvedModule":"./node_modules/lodash/_baseCreate.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":3118,"resolvedModuleId":3118},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","module":"./node_modules/lodash/_initCloneObject.js","moduleName":"./node_modules/lodash/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","resolvedModule":"./node_modules/lodash/_initCloneObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseCreate","loc":"1:17-41","moduleId":8517,"resolvedModuleId":8517}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":455,"sizes":{"javascript":455},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","index":6,"preOrderIndex":6,"index2":34,"postOrderIndex":34,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","issuerName":"./node_modules/lodash/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881,"issuerId":4486,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","module":"./node_modules/lodash/_baseEach.js","moduleName":"./node_modules/lodash/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","resolvedModule":"./node_modules/lodash/_baseEach.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":9881,"resolvedModuleId":9881},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","module":"./node_modules/lodash/_baseMap.js","moduleName":"./node_modules/lodash/_baseMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","resolvedModule":"./node_modules/lodash/_baseMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseEach","loc":"1:15-37","moduleId":9199,"resolvedModuleId":9199},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseEach","loc":"2:15-37","moduleId":4486,"resolvedModuleId":4486}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:50","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1201,"sizes":{"javascript":1201},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","name":"./node_modules/lodash/_baseFlatten.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","index":94,"preOrderIndex":94,"index2":91,"postOrderIndex":91,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","issuerName":"./node_modules/lodash/flatten.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","name":"./node_modules/lodash/flatten.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5564}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1078,"issuerId":5564,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","module":"./node_modules/lodash/_baseFlatten.js","moduleName":"./node_modules/lodash/_baseFlatten.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","resolvedModule":"./node_modules/lodash/_baseFlatten.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"38:0-14","moduleId":1078,"resolvedModuleId":1078},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","module":"./node_modules/lodash/flatten.js","moduleName":"./node_modules/lodash/flatten.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","resolvedModule":"./node_modules/lodash/flatten.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseFlatten","loc":"1:18-43","moduleId":5564,"resolvedModuleId":5564}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 38:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:48","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":593,"sizes":{"javascript":593},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","name":"./node_modules/lodash/_baseFor.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","index":8,"preOrderIndex":8,"index2":3,"postOrderIndex":3,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","issuerName":"./node_modules/lodash/_baseForOwn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","name":"./node_modules/lodash/_baseForOwn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7816}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8483,"issuerId":7816,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","module":"./node_modules/lodash/_baseFor.js","moduleName":"./node_modules/lodash/_baseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","resolvedModule":"./node_modules/lodash/_baseFor.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":8483,"resolvedModuleId":8483},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","module":"./node_modules/lodash/_baseForOwn.js","moduleName":"./node_modules/lodash/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","resolvedModule":"./node_modules/lodash/_baseForOwn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseFor","loc":"1:14-35","moduleId":7816,"resolvedModuleId":7816}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-48","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":456,"sizes":{"javascript":456},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","name":"./node_modules/lodash/_baseForOwn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","index":7,"preOrderIndex":7,"index2":32,"postOrderIndex":32,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","issuerName":"./node_modules/lodash/_baseEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7816,"issuerId":9881,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","module":"./node_modules/lodash/_baseEach.js","moduleName":"./node_modules/lodash/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","resolvedModule":"./node_modules/lodash/_baseEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseForOwn","loc":"1:17-41","moduleId":9881,"resolvedModuleId":9881},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","module":"./node_modules/lodash/_baseForOwn.js","moduleName":"./node_modules/lodash/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","resolvedModule":"./node_modules/lodash/_baseForOwn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":7816,"resolvedModuleId":7816},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","module":"./node_modules/lodash/forOwn.js","moduleName":"./node_modules/lodash/forOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","resolvedModule":"./node_modules/lodash/forOwn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseForOwn","loc":"1:17-41","moduleId":2525,"resolvedModuleId":2525}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":616,"sizes":{"javascript":616},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","name":"./node_modules/lodash/_baseGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","index":44,"preOrderIndex":44,"index2":79,"postOrderIndex":79,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","issuerName":"./node_modules/lodash/_basePickBy.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","name":"./node_modules/lodash/_basePickBy.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3012}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":7786,"issuerId":3012,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","module":"./node_modules/lodash/_baseGet.js","moduleName":"./node_modules/lodash/_baseGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","resolvedModule":"./node_modules/lodash/_baseGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"24:0-14","moduleId":7786,"resolvedModuleId":7786},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","module":"./node_modules/lodash/_basePickBy.js","moduleName":"./node_modules/lodash/_basePickBy.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","resolvedModule":"./node_modules/lodash/_basePickBy.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGet","loc":"1:14-35","moduleId":3012,"resolvedModuleId":3012},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","module":"./node_modules/lodash/_basePropertyDeep.js","moduleName":"./node_modules/lodash/_basePropertyDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","resolvedModule":"./node_modules/lodash/_basePropertyDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGet","loc":"1:14-35","moduleId":9152,"resolvedModuleId":9152},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","module":"./node_modules/lodash/get.js","moduleName":"./node_modules/lodash/get.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","resolvedModule":"./node_modules/lodash/get.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGet","loc":"1:14-35","moduleId":7361,"resolvedModuleId":7361}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 24:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":739,"sizes":{"javascript":739},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","name":"./node_modules/lodash/_baseGetAllKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","index":168,"preOrderIndex":168,"index2":150,"postOrderIndex":150,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","issuerName":"./node_modules/lodash/_getAllKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":8866,"issuerId":8234,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","module":"./node_modules/lodash/_baseGetAllKeys.js","moduleName":"./node_modules/lodash/_baseGetAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","resolvedModule":"./node_modules/lodash/_baseGetAllKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":8866,"resolvedModuleId":8866},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","module":"./node_modules/lodash/_getAllKeys.js","moduleName":"./node_modules/lodash/_getAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","resolvedModule":"./node_modules/lodash/_getAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetAllKeys","loc":"1:21-49","moduleId":8234,"resolvedModuleId":8234},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","module":"./node_modules/lodash/_getAllKeysIn.js","moduleName":"./node_modules/lodash/_getAllKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","resolvedModule":"./node_modules/lodash/_getAllKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetAllKeys","loc":"1:21-49","moduleId":6904,"resolvedModuleId":6904}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":792,"sizes":{"javascript":792},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","name":"./node_modules/lodash/_baseGetTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","index":15,"preOrderIndex":15,"index2":10,"postOrderIndex":10,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","issuerName":"./node_modules/lodash/isString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4239,"issuerId":7037,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","module":"./node_modules/lodash/_baseGetTag.js","moduleName":"./node_modules/lodash/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","resolvedModule":"./node_modules/lodash/_baseGetTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"28:0-14","moduleId":4239,"resolvedModuleId":4239},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","module":"./node_modules/lodash/_baseIsArguments.js","moduleName":"./node_modules/lodash/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","resolvedModule":"./node_modules/lodash/_baseIsArguments.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":9454,"resolvedModuleId":9454},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","module":"./node_modules/lodash/_baseIsTypedArray.js","moduleName":"./node_modules/lodash/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash/_baseIsTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":8749,"resolvedModuleId":8749},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"6:17-41","moduleId":4160,"resolvedModuleId":4160},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","module":"./node_modules/lodash/isFunction.js","moduleName":"./node_modules/lodash/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","resolvedModule":"./node_modules/lodash/isFunction.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":3560,"resolvedModuleId":3560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","module":"./node_modules/lodash/isNumber.js","moduleName":"./node_modules/lodash/isNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","resolvedModule":"./node_modules/lodash/isNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":1763,"resolvedModuleId":1763},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","module":"./node_modules/lodash/isPlainObject.js","moduleName":"./node_modules/lodash/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","resolvedModule":"./node_modules/lodash/isPlainObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":8630,"resolvedModuleId":8630},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","module":"./node_modules/lodash/isString.js","moduleName":"./node_modules/lodash/isString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","resolvedModule":"./node_modules/lodash/isString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":7037,"resolvedModuleId":7037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","module":"./node_modules/lodash/isSymbol.js","moduleName":"./node_modules/lodash/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","resolvedModule":"./node_modules/lodash/isSymbol.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":3448,"resolvedModuleId":3448}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 28:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:50","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":374,"sizes":{"javascript":374},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHasIn.js","name":"./node_modules/lodash/_baseHasIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHasIn.js","index":90,"preOrderIndex":90,"index2":85,"postOrderIndex":85,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","issuerName":"./node_modules/lodash/hasIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","name":"./node_modules/lodash/hasIn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":9095}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":13,"issuerId":9095,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHasIn.js","module":"./node_modules/lodash/_baseHasIn.js","moduleName":"./node_modules/lodash/_baseHasIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHasIn.js","resolvedModule":"./node_modules/lodash/_baseHasIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"13:0-14","moduleId":13,"resolvedModuleId":13},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","module":"./node_modules/lodash/hasIn.js","moduleName":"./node_modules/lodash/hasIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","resolvedModule":"./node_modules/lodash/hasIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseHasIn","loc":"1:16-39","moduleId":9095,"resolvedModuleId":9095}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 13:0-14","Statement (ExpressionStatement) with side effects in source code at 13:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":488,"sizes":{"javascript":488},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","name":"./node_modules/lodash/_baseIsArguments.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","index":14,"preOrderIndex":14,"index2":12,"postOrderIndex":12,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","issuerName":"./node_modules/lodash/isArguments.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","name":"./node_modules/lodash/isArguments.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":5694}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9454,"issuerId":5694,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","module":"./node_modules/lodash/_baseIsArguments.js","moduleName":"./node_modules/lodash/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","resolvedModule":"./node_modules/lodash/_baseIsArguments.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":9454,"resolvedModuleId":9454},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","module":"./node_modules/lodash/isArguments.js","moduleName":"./node_modules/lodash/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","resolvedModule":"./node_modules/lodash/isArguments.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsArguments","loc":"1:22-51","moduleId":5694,"resolvedModuleId":5694}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1019,"sizes":{"javascript":1019},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","index":154,"preOrderIndex":154,"index2":162,"postOrderIndex":162,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","issuerName":"./node_modules/lodash/_baseMatchesProperty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432}],"failed":false,"errors":0,"warnings":0,"profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939,"issuerId":6432,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","module":"./node_modules/lodash/_baseIsEqual.js","moduleName":"./node_modules/lodash/_baseIsEqual.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","resolvedModule":"./node_modules/lodash/_baseIsEqual.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"28:0-14","moduleId":939,"resolvedModuleId":939},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","module":"./node_modules/lodash/_baseIsMatch.js","moduleName":"./node_modules/lodash/_baseIsMatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","resolvedModule":"./node_modules/lodash/_baseIsMatch.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsEqual","loc":"2:18-43","moduleId":2958,"resolvedModuleId":2958},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsEqual","loc":"1:18-43","moduleId":6432,"resolvedModuleId":6432}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 28:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3010,"sizes":{"javascript":3010},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","index":155,"preOrderIndex":155,"index2":161,"postOrderIndex":161,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","issuerName":"./node_modules/lodash/_baseIsEqual.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492,"issuerId":939,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","module":"./node_modules/lodash/_baseIsEqual.js","moduleName":"./node_modules/lodash/_baseIsEqual.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","resolvedModule":"./node_modules/lodash/_baseIsEqual.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsEqualDeep","loc":"1:22-51","moduleId":939,"resolvedModuleId":939},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"83:0-14","moduleId":2492,"resolvedModuleId":2492}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 83:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-8:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":478,"sizes":{"javascript":478},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","name":"./node_modules/lodash/_baseIsMap.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","index":211,"preOrderIndex":211,"index2":198,"postOrderIndex":198,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","issuerName":"./node_modules/lodash/isMap.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","name":"./node_modules/lodash/isMap.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6688}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5588,"issuerId":6688,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","module":"./node_modules/lodash/_baseIsMap.js","moduleName":"./node_modules/lodash/_baseIsMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","resolvedModule":"./node_modules/lodash/_baseIsMap.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":5588,"resolvedModuleId":5588},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","module":"./node_modules/lodash/isMap.js","moduleName":"./node_modules/lodash/isMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","resolvedModule":"./node_modules/lodash/isMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsMap","loc":"1:16-39","moduleId":6688,"resolvedModuleId":6688}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1765,"sizes":{"javascript":1765},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","index":147,"preOrderIndex":147,"index2":163,"postOrderIndex":163,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","issuerName":"./node_modules/lodash/_baseMatches.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958,"issuerId":1573,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","module":"./node_modules/lodash/_baseIsMatch.js","moduleName":"./node_modules/lodash/_baseIsMatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","resolvedModule":"./node_modules/lodash/_baseIsMatch.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"62:0-14","moduleId":2958,"resolvedModuleId":2958},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","module":"./node_modules/lodash/_baseMatches.js","moduleName":"./node_modules/lodash/_baseMatches.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","resolvedModule":"./node_modules/lodash/_baseMatches.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsMatch","loc":"1:18-43","moduleId":1573,"resolvedModuleId":1573}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 62:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1417,"sizes":{"javascript":1417},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","name":"./node_modules/lodash/_baseIsNative.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","index":57,"preOrderIndex":57,"index2":44,"postOrderIndex":44,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","issuerName":"./node_modules/lodash/_getNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8458,"issuerId":852,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"47:0-14","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","module":"./node_modules/lodash/_getNative.js","moduleName":"./node_modules/lodash/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","resolvedModule":"./node_modules/lodash/_getNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsNative","loc":"1:19-45","moduleId":852,"resolvedModuleId":852}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 47:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":478,"sizes":{"javascript":478},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","name":"./node_modules/lodash/_baseIsSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","index":213,"preOrderIndex":213,"index2":200,"postOrderIndex":200,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","issuerName":"./node_modules/lodash/isSet.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","name":"./node_modules/lodash/isSet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2928}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9221,"issuerId":2928,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","module":"./node_modules/lodash/_baseIsSet.js","moduleName":"./node_modules/lodash/_baseIsSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","resolvedModule":"./node_modules/lodash/_baseIsSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":9221,"resolvedModuleId":9221},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","module":"./node_modules/lodash/isSet.js","moduleName":"./node_modules/lodash/isSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","resolvedModule":"./node_modules/lodash/isSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsSet","loc":"1:16-39","moduleId":2928,"resolvedModuleId":2928}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2222,"sizes":{"javascript":2222},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","name":"./node_modules/lodash/_baseIsTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","index":27,"preOrderIndex":27,"index2":19,"postOrderIndex":19,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","issuerName":"./node_modules/lodash/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","name":"./node_modules/lodash/isTypedArray.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6719}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8749,"issuerId":6719,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","module":"./node_modules/lodash/_baseIsTypedArray.js","moduleName":"./node_modules/lodash/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash/_baseIsTypedArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"60:0-14","moduleId":8749,"resolvedModuleId":8749},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","module":"./node_modules/lodash/isTypedArray.js","moduleName":"./node_modules/lodash/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","resolvedModule":"./node_modules/lodash/isTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsTypedArray","loc":"1:23-53","moduleId":6719,"resolvedModuleId":6719}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 60:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":895,"sizes":{"javascript":895},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","index":145,"preOrderIndex":145,"index2":173,"postOrderIndex":173,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","issuerName":"./node_modules/lodash/_createFind.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206,"issuerId":7740,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"31:0-14","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","module":"./node_modules/lodash/_createFind.js","moduleName":"./node_modules/lodash/_createFind.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","resolvedModule":"./node_modules/lodash/_createFind.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIteratee","loc":"1:19-45","moduleId":7740,"resolvedModuleId":7740},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","module":"./node_modules/lodash/findIndex.js","moduleName":"./node_modules/lodash/findIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","resolvedModule":"./node_modules/lodash/findIndex.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIteratee","loc":"2:19-45","moduleId":998,"resolvedModuleId":998},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","module":"./node_modules/lodash/map.js","moduleName":"./node_modules/lodash/map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","resolvedModule":"./node_modules/lodash/map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIteratee","loc":"2:19-45","moduleId":5161,"resolvedModuleId":5161}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 31:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":776,"sizes":{"javascript":776},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","name":"./node_modules/lodash/_baseKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","index":31,"preOrderIndex":31,"index2":27,"postOrderIndex":27,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":280,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","module":"./node_modules/lodash/_baseKeys.js","moduleName":"./node_modules/lodash/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","resolvedModule":"./node_modules/lodash/_baseKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":280,"resolvedModuleId":280},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseKeys","loc":"1:15-37","moduleId":1609,"resolvedModuleId":1609},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","module":"./node_modules/lodash/keys.js","moduleName":"./node_modules/lodash/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","resolvedModule":"./node_modules/lodash/keys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseKeys","loc":"2:15-37","moduleId":3674,"resolvedModuleId":3674}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":870,"sizes":{"javascript":870},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","name":"./node_modules/lodash/_baseKeysIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","index":193,"preOrderIndex":193,"index2":180,"postOrderIndex":180,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","issuerName":"./node_modules/lodash/keysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","name":"./node_modules/lodash/keysIn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1704}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":313,"issuerId":1704,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","module":"./node_modules/lodash/_baseKeysIn.js","moduleName":"./node_modules/lodash/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","resolvedModule":"./node_modules/lodash/_baseKeysIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"33:0-14","moduleId":313,"resolvedModuleId":313},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","module":"./node_modules/lodash/keysIn.js","moduleName":"./node_modules/lodash/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","resolvedModule":"./node_modules/lodash/keysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseKeysIn","loc":"2:17-41","moduleId":1704,"resolvedModuleId":1704}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 33:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":668,"sizes":{"javascript":668},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","name":"./node_modules/lodash/_baseMap.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","index":185,"preOrderIndex":185,"index2":174,"postOrderIndex":174,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","issuerName":"./node_modules/lodash/map.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","name":"./node_modules/reactcss/lib/flattenNames.js","profile":{"total":26,"resolving":8,"restoring":0,"building":18,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":4147},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","name":"./node_modules/lodash/map.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5161}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9199,"issuerId":5161,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","module":"./node_modules/lodash/_baseMap.js","moduleName":"./node_modules/lodash/_baseMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","resolvedModule":"./node_modules/lodash/_baseMap.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":9199,"resolvedModuleId":9199},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","module":"./node_modules/lodash/map.js","moduleName":"./node_modules/lodash/map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","resolvedModule":"./node_modules/lodash/map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseMap","loc":"3:14-35","moduleId":5161,"resolvedModuleId":5161}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:43","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":710,"sizes":{"javascript":710},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","index":146,"preOrderIndex":146,"index2":167,"postOrderIndex":167,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","issuerName":"./node_modules/lodash/_baseIteratee.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573,"issuerId":7206,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseMatches","loc":"1:18-43","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","module":"./node_modules/lodash/_baseMatches.js","moduleName":"./node_modules/lodash/_baseMatches.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","resolvedModule":"./node_modules/lodash/_baseMatches.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":1573,"resolvedModuleId":1573}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:68","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1129,"sizes":{"javascript":1129},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","index":180,"preOrderIndex":180,"index2":169,"postOrderIndex":169,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","issuerName":"./node_modules/lodash/_baseIteratee.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432,"issuerId":7206,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseMatchesProperty","loc":"2:26-59","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"33:0-14","moduleId":6432,"resolvedModuleId":6432}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 33:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-7:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":501,"sizes":{"javascript":501},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","index":42,"preOrderIndex":42,"index2":88,"postOrderIndex":88,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","issuerName":"./node_modules/lodash/pick.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970,"issuerId":8718,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","module":"./node_modules/lodash/_basePick.js","moduleName":"./node_modules/lodash/_basePick.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","resolvedModule":"./node_modules/lodash/_basePick.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":5970,"resolvedModuleId":5970},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","module":"./node_modules/lodash/pick.js","moduleName":"./node_modules/lodash/pick.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","resolvedModule":"./node_modules/lodash/pick.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_basePick","loc":"1:15-37","moduleId":8718,"resolvedModuleId":8718}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:31","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":791,"sizes":{"javascript":791},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","name":"./node_modules/lodash/_basePickBy.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","index":43,"preOrderIndex":43,"index2":84,"postOrderIndex":84,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","issuerName":"./node_modules/lodash/_basePick.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3012,"issuerId":5970,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","module":"./node_modules/lodash/_basePick.js","moduleName":"./node_modules/lodash/_basePick.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","resolvedModule":"./node_modules/lodash/_basePick.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_basePickBy","loc":"1:17-41","moduleId":5970,"resolvedModuleId":5970},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","module":"./node_modules/lodash/_basePickBy.js","moduleName":"./node_modules/lodash/_basePickBy.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","resolvedModule":"./node_modules/lodash/_basePickBy.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":3012,"resolvedModuleId":3012}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":360,"sizes":{"javascript":360},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseProperty.js","name":"./node_modules/lodash/_baseProperty.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseProperty.js","index":183,"preOrderIndex":183,"index2":170,"postOrderIndex":170,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","issuerName":"./node_modules/lodash/property.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","name":"./node_modules/lodash/property.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9601}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":371,"issuerId":9601,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseProperty.js","module":"./node_modules/lodash/_baseProperty.js","moduleName":"./node_modules/lodash/_baseProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseProperty.js","resolvedModule":"./node_modules/lodash/_baseProperty.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":371,"resolvedModuleId":371},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseProperty","loc":"1:19-45","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":391,"sizes":{"javascript":391},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","name":"./node_modules/lodash/_basePropertyDeep.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","index":184,"preOrderIndex":184,"index2":171,"postOrderIndex":171,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","issuerName":"./node_modules/lodash/property.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","name":"./node_modules/lodash/property.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9601}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9152,"issuerId":9601,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","module":"./node_modules/lodash/_basePropertyDeep.js","moduleName":"./node_modules/lodash/_basePropertyDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","resolvedModule":"./node_modules/lodash/_basePropertyDeep.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":9152,"resolvedModuleId":9152},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_basePropertyDeep","loc":"2:23-53","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1385,"sizes":{"javascript":1385},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","name":"./node_modules/lodash/_baseSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","index":85,"preOrderIndex":85,"index2":83,"postOrderIndex":83,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","issuerName":"./node_modules/lodash/_basePickBy.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","name":"./node_modules/lodash/_basePickBy.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3012}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":611,"issuerId":3012,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","module":"./node_modules/lodash/_basePickBy.js","moduleName":"./node_modules/lodash/_basePickBy.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","resolvedModule":"./node_modules/lodash/_basePickBy.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseSet","loc":"2:14-35","moduleId":3012,"resolvedModuleId":3012},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"51:0-14","moduleId":611,"resolvedModuleId":611}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 51:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":641,"sizes":{"javascript":641},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","name":"./node_modules/lodash/_baseSetToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","index":100,"preOrderIndex":100,"index2":96,"postOrderIndex":96,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","issuerName":"./node_modules/lodash/_setToString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","name":"./node_modules/lodash/_setToString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":61}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6560,"issuerId":61,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","module":"./node_modules/lodash/_baseSetToString.js","moduleName":"./node_modules/lodash/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","resolvedModule":"./node_modules/lodash/_baseSetToString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":6560,"resolvedModuleId":6560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","module":"./node_modules/lodash/_setToString.js","moduleName":"./node_modules/lodash/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","resolvedModule":"./node_modules/lodash/_setToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseSetToString","loc":"1:22-51","moduleId":61,"resolvedModuleId":61}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":504,"sizes":{"javascript":504},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTimes.js","name":"./node_modules/lodash/_baseTimes.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTimes.js","index":12,"preOrderIndex":12,"index2":4,"postOrderIndex":4,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","issuerName":"./node_modules/lodash/_arrayLikeKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","name":"./node_modules/lodash/keys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3674},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","name":"./node_modules/lodash/_arrayLikeKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4636}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2545,"issuerId":4636,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseTimes","loc":"1:16-39","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTimes.js","module":"./node_modules/lodash/_baseTimes.js","moduleName":"./node_modules/lodash/_baseTimes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTimes.js","resolvedModule":"./node_modules/lodash/_baseTimes.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":2545,"resolvedModuleId":2545}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (ExpressionStatement) with side effects in source code at 20:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1154,"sizes":{"javascript":1154},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","name":"./node_modules/lodash/_baseToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","index":82,"preOrderIndex":82,"index2":75,"postOrderIndex":75,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","issuerName":"./node_modules/lodash/toString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","name":"./node_modules/lodash/toString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9833}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":531,"issuerId":9833,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","module":"./node_modules/lodash/toString.js","moduleName":"./node_modules/lodash/toString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","resolvedModule":"./node_modules/lodash/toString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseToString","loc":"1:19-45","moduleId":9833,"resolvedModuleId":9833}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":444,"sizes":{"javascript":444},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","name":"./node_modules/lodash/_baseTrim.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","index":113,"preOrderIndex":113,"index2":110,"postOrderIndex":110,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","issuerName":"./node_modules/lodash/toNumber.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","name":"./node_modules/lodash/toNumber.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":4841}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7561,"issuerId":4841,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","module":"./node_modules/lodash/_baseTrim.js","moduleName":"./node_modules/lodash/_baseTrim.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","resolvedModule":"./node_modules/lodash/_baseTrim.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":7561,"resolvedModuleId":7561},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseTrim","loc":"1:15-37","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-52","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":332,"sizes":{"javascript":332},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseUnary.js","name":"./node_modules/lodash/_baseUnary.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseUnary.js","index":29,"preOrderIndex":29,"index2":20,"postOrderIndex":20,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","issuerName":"./node_modules/lodash/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","name":"./node_modules/lodash/isTypedArray.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6719}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":7518,"issuerId":6719,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseUnary.js","module":"./node_modules/lodash/_baseUnary.js","moduleName":"./node_modules/lodash/_baseUnary.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseUnary.js","resolvedModule":"./node_modules/lodash/_baseUnary.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":7518,"resolvedModuleId":7518},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","module":"./node_modules/lodash/isMap.js","moduleName":"./node_modules/lodash/isMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","resolvedModule":"./node_modules/lodash/isMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseUnary","loc":"2:16-39","moduleId":6688,"resolvedModuleId":6688},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","module":"./node_modules/lodash/isSet.js","moduleName":"./node_modules/lodash/isSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","resolvedModule":"./node_modules/lodash/isSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseUnary","loc":"2:16-39","moduleId":2928,"resolvedModuleId":2928},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","module":"./node_modules/lodash/isTypedArray.js","moduleName":"./node_modules/lodash/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","resolvedModule":"./node_modules/lodash/isTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseUnary","loc":"2:16-39","moduleId":6719,"resolvedModuleId":6719}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":337,"sizes":{"javascript":337},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cacheHas.js","name":"./node_modules/lodash/_cacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cacheHas.js","index":161,"preOrderIndex":161,"index2":144,"postOrderIndex":144,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","issuerName":"./node_modules/lodash/_equalArrays.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4757,"issuerId":7114,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cacheHas.js","module":"./node_modules/lodash/_cacheHas.js","moduleName":"./node_modules/lodash/_cacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cacheHas.js","resolvedModule":"./node_modules/lodash/_cacheHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"13:0-14","moduleId":4757,"resolvedModuleId":4757},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","module":"./node_modules/lodash/_equalArrays.js","moduleName":"./node_modules/lodash/_equalArrays.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","resolvedModule":"./node_modules/lodash/_equalArrays.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cacheHas","loc":"3:15-37","moduleId":7114,"resolvedModuleId":7114}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 13:0-14","Statement (ExpressionStatement) with side effects in source code at 13:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":326,"sizes":{"javascript":326},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","name":"./node_modules/lodash/_castFunction.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","index":39,"preOrderIndex":39,"index2":36,"postOrderIndex":36,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","issuerName":"./node_modules/lodash/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4290,"issuerId":4486,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","module":"./node_modules/lodash/_castFunction.js","moduleName":"./node_modules/lodash/_castFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","resolvedModule":"./node_modules/lodash/_castFunction.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":4290,"resolvedModuleId":4290},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castFunction","loc":"3:19-45","moduleId":4486,"resolvedModuleId":4486},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","module":"./node_modules/lodash/forOwn.js","moduleName":"./node_modules/lodash/forOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","resolvedModule":"./node_modules/lodash/forOwn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castFunction","loc":"2:19-45","moduleId":2525,"resolvedModuleId":2525}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":569,"sizes":{"javascript":569},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","index":45,"preOrderIndex":45,"index2":77,"postOrderIndex":77,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","issuerName":"./node_modules/lodash/_hasPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811,"issuerId":222,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","module":"./node_modules/lodash/_baseGet.js","moduleName":"./node_modules/lodash/_baseGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","resolvedModule":"./node_modules/lodash/_baseGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castPath","loc":"1:15-37","moduleId":7786,"resolvedModuleId":7786},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","module":"./node_modules/lodash/_basePickBy.js","moduleName":"./node_modules/lodash/_basePickBy.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","resolvedModule":"./node_modules/lodash/_basePickBy.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castPath","loc":"3:15-37","moduleId":3012,"resolvedModuleId":3012},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castPath","loc":"2:15-37","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castPath","loc":"1:15-37","moduleId":222,"resolvedModuleId":222}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":449,"sizes":{"javascript":449},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneArrayBuffer.js","name":"./node_modules/lodash/_cloneArrayBuffer.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneArrayBuffer.js","index":203,"preOrderIndex":203,"index2":190,"postOrderIndex":190,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","issuerName":"./node_modules/lodash/_initCloneByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","name":"./node_modules/lodash/_initCloneByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9148}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4318,"issuerId":9148,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneArrayBuffer.js","module":"./node_modules/lodash/_cloneArrayBuffer.js","moduleName":"./node_modules/lodash/_cloneArrayBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneArrayBuffer.js","resolvedModule":"./node_modules/lodash/_cloneArrayBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":4318,"resolvedModuleId":4318},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneDataView.js","module":"./node_modules/lodash/_cloneDataView.js","moduleName":"./node_modules/lodash/_cloneDataView.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneDataView.js","resolvedModule":"./node_modules/lodash/_cloneDataView.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cloneArrayBuffer","loc":"1:23-53","moduleId":7157,"resolvedModuleId":7157},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneTypedArray.js","module":"./node_modules/lodash/_cloneTypedArray.js","moduleName":"./node_modules/lodash/_cloneTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneTypedArray.js","resolvedModule":"./node_modules/lodash/_cloneTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cloneArrayBuffer","loc":"1:23-53","moduleId":7133,"resolvedModuleId":7133},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","module":"./node_modules/lodash/_initCloneByTag.js","moduleName":"./node_modules/lodash/_initCloneByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","resolvedModule":"./node_modules/lodash/_initCloneByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cloneArrayBuffer","loc":"1:23-53","moduleId":9148,"resolvedModuleId":9148}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1056,"sizes":{"javascript":1056},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","name":"./node_modules/lodash/_cloneBuffer.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","index":195,"preOrderIndex":195,"index2":183,"postOrderIndex":183,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4626,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cloneBuffer","loc":"6:18-43","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:48-55","moduleId":4626,"resolvedModuleId":4626},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:60-76","moduleId":4626,"resolvedModuleId":4626},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:80-87","moduleId":4626,"resolvedModuleId":4626},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:61-67","moduleId":4626,"resolvedModuleId":4626},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:72-78","moduleId":4626,"resolvedModuleId":4626},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:91-97","moduleId":4626,"resolvedModuleId":4626},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"35:0-14","moduleId":4626,"resolvedModuleId":4626}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: exports is used directly at 4:48-55","CommonJS bailout: exports is used directly at 4:80-87","CommonJS bailout: module.exports is used directly at 35:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":507,"sizes":{"javascript":507},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneDataView.js","name":"./node_modules/lodash/_cloneDataView.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneDataView.js","index":204,"preOrderIndex":204,"index2":191,"postOrderIndex":191,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","issuerName":"./node_modules/lodash/_initCloneByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","name":"./node_modules/lodash/_initCloneByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9148}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7157,"issuerId":9148,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneDataView.js","module":"./node_modules/lodash/_cloneDataView.js","moduleName":"./node_modules/lodash/_cloneDataView.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneDataView.js","resolvedModule":"./node_modules/lodash/_cloneDataView.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":7157,"resolvedModuleId":7157},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","module":"./node_modules/lodash/_initCloneByTag.js","moduleName":"./node_modules/lodash/_initCloneByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","resolvedModule":"./node_modules/lodash/_initCloneByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cloneDataView","loc":"2:20-47","moduleId":9148,"resolvedModuleId":9148}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-54","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":439,"sizes":{"javascript":439},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneRegExp.js","name":"./node_modules/lodash/_cloneRegExp.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneRegExp.js","index":205,"preOrderIndex":205,"index2":192,"postOrderIndex":192,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","issuerName":"./node_modules/lodash/_initCloneByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","name":"./node_modules/lodash/_initCloneByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9148}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3147,"issuerId":9148,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneRegExp.js","module":"./node_modules/lodash/_cloneRegExp.js","moduleName":"./node_modules/lodash/_cloneRegExp.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneRegExp.js","resolvedModule":"./node_modules/lodash/_cloneRegExp.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"17:0-14","moduleId":3147,"resolvedModuleId":3147},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","module":"./node_modules/lodash/_initCloneByTag.js","moduleName":"./node_modules/lodash/_initCloneByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","resolvedModule":"./node_modules/lodash/_initCloneByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cloneRegExp","loc":"3:18-43","moduleId":9148,"resolvedModuleId":9148}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 17:0-14","Statement (ExpressionStatement) with side effects in source code at 17:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":524,"sizes":{"javascript":524},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneSymbol.js","name":"./node_modules/lodash/_cloneSymbol.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneSymbol.js","index":206,"preOrderIndex":206,"index2":193,"postOrderIndex":193,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","issuerName":"./node_modules/lodash/_initCloneByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","name":"./node_modules/lodash/_initCloneByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9148}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":419,"issuerId":9148,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneSymbol.js","module":"./node_modules/lodash/_cloneSymbol.js","moduleName":"./node_modules/lodash/_cloneSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneSymbol.js","resolvedModule":"./node_modules/lodash/_cloneSymbol.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":419,"resolvedModuleId":419},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","module":"./node_modules/lodash/_initCloneByTag.js","moduleName":"./node_modules/lodash/_initCloneByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","resolvedModule":"./node_modules/lodash/_initCloneByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cloneSymbol","loc":"4:18-43","moduleId":9148,"resolvedModuleId":9148}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-34","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":527,"sizes":{"javascript":527},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneTypedArray.js","name":"./node_modules/lodash/_cloneTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneTypedArray.js","index":207,"preOrderIndex":207,"index2":194,"postOrderIndex":194,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","issuerName":"./node_modules/lodash/_initCloneByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","name":"./node_modules/lodash/_initCloneByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9148}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7133,"issuerId":9148,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneTypedArray.js","module":"./node_modules/lodash/_cloneTypedArray.js","moduleName":"./node_modules/lodash/_cloneTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneTypedArray.js","resolvedModule":"./node_modules/lodash/_cloneTypedArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":7133,"resolvedModuleId":7133},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","module":"./node_modules/lodash/_initCloneByTag.js","moduleName":"./node_modules/lodash/_initCloneByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","resolvedModule":"./node_modules/lodash/_initCloneByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cloneTypedArray","loc":"5:22-51","moduleId":9148,"resolvedModuleId":9148}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-54","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":454,"sizes":{"javascript":454},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyArray.js","name":"./node_modules/lodash/_copyArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyArray.js","index":196,"preOrderIndex":196,"index2":184,"postOrderIndex":184,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":278,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_copyArray","loc":"7:16-39","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyArray.js","module":"./node_modules/lodash/_copyArray.js","moduleName":"./node_modules/lodash/_copyArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyArray.js","resolvedModule":"./node_modules/lodash/_copyArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":278,"resolvedModuleId":278}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (ExpressionStatement) with side effects in source code at 20:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1044,"sizes":{"javascript":1044},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyObject.js","name":"./node_modules/lodash/_copyObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyObject.js","index":190,"preOrderIndex":190,"index2":177,"postOrderIndex":177,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","issuerName":"./node_modules/lodash/_baseAssign.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","name":"./node_modules/lodash/_baseAssign.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4037}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8363,"issuerId":4037,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","module":"./node_modules/lodash/_baseAssign.js","moduleName":"./node_modules/lodash/_baseAssign.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","resolvedModule":"./node_modules/lodash/_baseAssign.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_copyObject","loc":"1:17-41","moduleId":4037,"resolvedModuleId":4037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignIn.js","module":"./node_modules/lodash/_baseAssignIn.js","moduleName":"./node_modules/lodash/_baseAssignIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignIn.js","resolvedModule":"./node_modules/lodash/_baseAssignIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_copyObject","loc":"1:17-41","moduleId":3886,"resolvedModuleId":3886},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyObject.js","module":"./node_modules/lodash/_copyObject.js","moduleName":"./node_modules/lodash/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyObject.js","resolvedModule":"./node_modules/lodash/_copyObject.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"40:0-14","moduleId":8363,"resolvedModuleId":8363},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","module":"./node_modules/lodash/_copySymbols.js","moduleName":"./node_modules/lodash/_copySymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","resolvedModule":"./node_modules/lodash/_copySymbols.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_copyObject","loc":"1:17-41","moduleId":8805,"resolvedModuleId":8805},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbolsIn.js","module":"./node_modules/lodash/_copySymbolsIn.js","moduleName":"./node_modules/lodash/_copySymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbolsIn.js","resolvedModule":"./node_modules/lodash/_copySymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_copyObject","loc":"1:17-41","moduleId":1911,"resolvedModuleId":1911}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 40:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:52","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":446,"sizes":{"javascript":446},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","name":"./node_modules/lodash/_copySymbols.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","index":197,"preOrderIndex":197,"index2":185,"postOrderIndex":185,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8805,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_copySymbols","loc":"8:18-43","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","module":"./node_modules/lodash/_copySymbols.js","moduleName":"./node_modules/lodash/_copySymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","resolvedModule":"./node_modules/lodash/_copySymbols.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":8805,"resolvedModuleId":8805}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":470,"sizes":{"javascript":470},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbolsIn.js","name":"./node_modules/lodash/_copySymbolsIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbolsIn.js","index":198,"preOrderIndex":198,"index2":187,"postOrderIndex":187,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1911,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_copySymbolsIn","loc":"9:20-47","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbolsIn.js","module":"./node_modules/lodash/_copySymbolsIn.js","moduleName":"./node_modules/lodash/_copySymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbolsIn.js","resolvedModule":"./node_modules/lodash/_copySymbolsIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":1911,"resolvedModuleId":1911}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":157,"sizes":{"javascript":157},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","name":"./node_modules/lodash/_coreJsData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","index":59,"preOrderIndex":59,"index2":41,"postOrderIndex":41,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","issuerName":"./node_modules/lodash/_isMasked.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","name":"./node_modules/lodash/_baseIsNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8458},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","name":"./node_modules/lodash/_isMasked.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5346}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4429,"issuerId":5346,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","module":"./node_modules/lodash/_coreJsData.js","moduleName":"./node_modules/lodash/_coreJsData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","resolvedModule":"./node_modules/lodash/_coreJsData.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":4429,"resolvedModuleId":4429},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","module":"./node_modules/lodash/_isMasked.js","moduleName":"./node_modules/lodash/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","resolvedModule":"./node_modules/lodash/_isMasked.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_coreJsData","loc":"1:17-41","moduleId":5346,"resolvedModuleId":5346}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":886,"sizes":{"javascript":886},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","name":"./node_modules/lodash/_createBaseEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","index":38,"preOrderIndex":38,"index2":33,"postOrderIndex":33,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","issuerName":"./node_modules/lodash/_baseEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9291,"issuerId":9881,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","module":"./node_modules/lodash/_baseEach.js","moduleName":"./node_modules/lodash/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","resolvedModule":"./node_modules/lodash/_baseEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_createBaseEach","loc":"2:21-49","moduleId":9881,"resolvedModuleId":9881},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","module":"./node_modules/lodash/_createBaseEach.js","moduleName":"./node_modules/lodash/_createBaseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","resolvedModule":"./node_modules/lodash/_createBaseEach.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":9291,"resolvedModuleId":9291}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-43","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":648,"sizes":{"javascript":648},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseFor.js","name":"./node_modules/lodash/_createBaseFor.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseFor.js","index":9,"preOrderIndex":9,"index2":2,"postOrderIndex":2,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","issuerName":"./node_modules/lodash/_baseFor.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","name":"./node_modules/lodash/_baseForOwn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7816},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","name":"./node_modules/lodash/_baseFor.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8483}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5063,"issuerId":8483,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","module":"./node_modules/lodash/_baseFor.js","moduleName":"./node_modules/lodash/_baseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","resolvedModule":"./node_modules/lodash/_baseFor.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_createBaseFor","loc":"1:20-47","moduleId":8483,"resolvedModuleId":8483},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseFor.js","module":"./node_modules/lodash/_createBaseFor.js","moduleName":"./node_modules/lodash/_createBaseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseFor.js","resolvedModule":"./node_modules/lodash/_createBaseFor.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":5063,"resolvedModuleId":5063}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (ExpressionStatement) with side effects in source code at 25:0-31","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":233,"sizes":{"javascript":233},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_defineProperty.js","name":"./node_modules/lodash/_defineProperty.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_defineProperty.js","index":88,"preOrderIndex":88,"index2":80,"postOrderIndex":80,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","issuerName":"./node_modules/lodash/_baseSetToString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","name":"./node_modules/lodash/_setToString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":61},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","name":"./node_modules/lodash/_baseSetToString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6560}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8777,"issuerId":6560,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignValue.js","module":"./node_modules/lodash/_baseAssignValue.js","moduleName":"./node_modules/lodash/_baseAssignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignValue.js","resolvedModule":"./node_modules/lodash/_baseAssignValue.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_defineProperty","loc":"1:21-49","moduleId":9465,"resolvedModuleId":9465},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","module":"./node_modules/lodash/_baseSetToString.js","moduleName":"./node_modules/lodash/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","resolvedModule":"./node_modules/lodash/_baseSetToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_defineProperty","loc":"2:21-49","moduleId":6560,"resolvedModuleId":6560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_defineProperty.js","module":"./node_modules/lodash/_defineProperty.js","moduleName":"./node_modules/lodash/_defineProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_defineProperty.js","resolvedModule":"./node_modules/lodash/_defineProperty.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"11:0-14","moduleId":8777,"resolvedModuleId":8777}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 11:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-40","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2662,"sizes":{"javascript":2662},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","index":156,"preOrderIndex":156,"index2":145,"postOrderIndex":145,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","issuerName":"./node_modules/lodash/_baseIsEqualDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114,"issuerId":2492,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_equalArrays","loc":"2:18-43","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","module":"./node_modules/lodash/_equalArrays.js","moduleName":"./node_modules/lodash/_equalArrays.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","resolvedModule":"./node_modules/lodash/_equalArrays.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"84:0-14","moduleId":7114,"resolvedModuleId":7114},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_equalArrays","loc":"4:18-43","moduleId":8351,"resolvedModuleId":8351}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 84:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3746,"sizes":{"javascript":3746},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","name":"./node_modules/lodash/_equalByTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","index":162,"preOrderIndex":162,"index2":149,"postOrderIndex":149,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","issuerName":"./node_modules/lodash/_baseIsEqualDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8351,"issuerId":2492,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_equalByTag","loc":"3:17-41","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"112:0-14","moduleId":8351,"resolvedModuleId":8351}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 112:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-6:42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2971,"sizes":{"javascript":2971},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","index":166,"preOrderIndex":166,"index2":155,"postOrderIndex":155,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","issuerName":"./node_modules/lodash/_baseIsEqualDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096,"issuerId":2492,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_equalObjects","loc":"4:19-45","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","module":"./node_modules/lodash/_equalObjects.js","moduleName":"./node_modules/lodash/_equalObjects.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","resolvedModule":"./node_modules/lodash/_equalObjects.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"90:0-14","moduleId":6096,"resolvedModuleId":6096}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 90:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":457,"sizes":{"javascript":457},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","index":92,"preOrderIndex":92,"index2":99,"postOrderIndex":99,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","issuerName":"./node_modules/lodash/pick.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021,"issuerId":8718,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","module":"./node_modules/lodash/_flatRest.js","moduleName":"./node_modules/lodash/_flatRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","resolvedModule":"./node_modules/lodash/_flatRest.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":9021,"resolvedModuleId":9021},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","module":"./node_modules/lodash/pick.js","moduleName":"./node_modules/lodash/pick.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","resolvedModule":"./node_modules/lodash/pick.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_flatRest","loc":"2:15-37","moduleId":8718,"resolvedModuleId":8718}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":173,"sizes":{"javascript":173},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_freeGlobal.js","name":"./node_modules/lodash/_freeGlobal.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_freeGlobal.js","index":18,"preOrderIndex":18,"index2":5,"postOrderIndex":5,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","issuerName":"./node_modules/lodash/_root.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","name":"./node_modules/lodash/now.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7771},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","name":"./node_modules/lodash/_root.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":5639}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1957,"issuerId":5639,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_freeGlobal.js","module":"./node_modules/lodash/_freeGlobal.js","moduleName":"./node_modules/lodash/_freeGlobal.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_freeGlobal.js","resolvedModule":"./node_modules/lodash/_freeGlobal.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:0-14","moduleId":1957,"resolvedModuleId":1957},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_freeGlobal","loc":"1:17-41","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","module":"./node_modules/lodash/_root.js","moduleName":"./node_modules/lodash/_root.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","resolvedModule":"./node_modules/lodash/_root.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_freeGlobal","loc":"1:17-41","moduleId":5639,"resolvedModuleId":5639}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 4:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-91","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":455,"sizes":{"javascript":455},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","index":167,"preOrderIndex":167,"index2":154,"postOrderIndex":154,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","issuerName":"./node_modules/lodash/_equalObjects.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234,"issuerId":6096,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getAllKeys","loc":"10:17-41","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","module":"./node_modules/lodash/_equalObjects.js","moduleName":"./node_modules/lodash/_equalObjects.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","resolvedModule":"./node_modules/lodash/_equalObjects.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getAllKeys","loc":"1:17-41","moduleId":6096,"resolvedModuleId":6096},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","module":"./node_modules/lodash/_getAllKeys.js","moduleName":"./node_modules/lodash/_getAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","resolvedModule":"./node_modules/lodash/_getAllKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":8234,"resolvedModuleId":8234}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":488,"sizes":{"javascript":488},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","name":"./node_modules/lodash/_getAllKeysIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","index":200,"preOrderIndex":200,"index2":188,"postOrderIndex":188,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6904,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getAllKeysIn","loc":"11:19-45","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","module":"./node_modules/lodash/_getAllKeysIn.js","moduleName":"./node_modules/lodash/_getAllKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","resolvedModule":"./node_modules/lodash/_getAllKeysIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"17:0-14","moduleId":6904,"resolvedModuleId":6904}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 17:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:33","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":400,"sizes":{"javascript":400},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","name":"./node_modules/lodash/_getMapData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","index":76,"preOrderIndex":76,"index2":65,"postOrderIndex":65,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","issuerName":"./node_modules/lodash/_mapCacheGet.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","name":"./node_modules/lodash/_mapCacheGet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6000}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5050,"issuerId":6000,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","module":"./node_modules/lodash/_getMapData.js","moduleName":"./node_modules/lodash/_getMapData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","resolvedModule":"./node_modules/lodash/_getMapData.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":5050,"resolvedModuleId":5050},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","module":"./node_modules/lodash/_mapCacheDelete.js","moduleName":"./node_modules/lodash/_mapCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","resolvedModule":"./node_modules/lodash/_mapCacheDelete.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMapData","loc":"1:17-41","moduleId":1285,"resolvedModuleId":1285},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","module":"./node_modules/lodash/_mapCacheGet.js","moduleName":"./node_modules/lodash/_mapCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","resolvedModule":"./node_modules/lodash/_mapCacheGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMapData","loc":"1:17-41","moduleId":6000,"resolvedModuleId":6000},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","module":"./node_modules/lodash/_mapCacheHas.js","moduleName":"./node_modules/lodash/_mapCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","resolvedModule":"./node_modules/lodash/_mapCacheHas.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMapData","loc":"1:17-41","moduleId":9916,"resolvedModuleId":9916},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","module":"./node_modules/lodash/_mapCacheSet.js","moduleName":"./node_modules/lodash/_mapCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","resolvedModule":"./node_modules/lodash/_mapCacheSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMapData","loc":"1:17-41","moduleId":5265,"resolvedModuleId":5265}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-40","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":573,"sizes":{"javascript":573},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","name":"./node_modules/lodash/_getMatchData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","index":177,"preOrderIndex":177,"index2":165,"postOrderIndex":165,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","issuerName":"./node_modules/lodash/_baseMatches.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1499,"issuerId":1573,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","module":"./node_modules/lodash/_baseMatches.js","moduleName":"./node_modules/lodash/_baseMatches.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","resolvedModule":"./node_modules/lodash/_baseMatches.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMatchData","loc":"2:19-45","moduleId":1573,"resolvedModuleId":1573},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","module":"./node_modules/lodash/_getMatchData.js","moduleName":"./node_modules/lodash/_getMatchData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","resolvedModule":"./node_modules/lodash/_getMatchData.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"24:0-14","moduleId":1499,"resolvedModuleId":1499}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 24:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":483,"sizes":{"javascript":483},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","index":56,"preOrderIndex":56,"index2":46,"postOrderIndex":46,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","issuerName":"./node_modules/lodash/_DataView.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852,"issuerId":8552,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","module":"./node_modules/lodash/_DataView.js","moduleName":"./node_modules/lodash/_DataView.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","resolvedModule":"./node_modules/lodash/_DataView.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":8552,"resolvedModuleId":8552},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","module":"./node_modules/lodash/_Map.js","moduleName":"./node_modules/lodash/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","resolvedModule":"./node_modules/lodash/_Map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":7071,"resolvedModuleId":7071},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","module":"./node_modules/lodash/_Promise.js","moduleName":"./node_modules/lodash/_Promise.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","resolvedModule":"./node_modules/lodash/_Promise.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":3818,"resolvedModuleId":3818},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","module":"./node_modules/lodash/_Set.js","moduleName":"./node_modules/lodash/_Set.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","resolvedModule":"./node_modules/lodash/_Set.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":8525,"resolvedModuleId":8525},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","module":"./node_modules/lodash/_WeakMap.js","moduleName":"./node_modules/lodash/_WeakMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","resolvedModule":"./node_modules/lodash/_WeakMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":577,"resolvedModuleId":577},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_defineProperty.js","module":"./node_modules/lodash/_defineProperty.js","moduleName":"./node_modules/lodash/_defineProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_defineProperty.js","resolvedModule":"./node_modules/lodash/_defineProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":8777,"resolvedModuleId":8777},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","module":"./node_modules/lodash/_getNative.js","moduleName":"./node_modules/lodash/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","resolvedModule":"./node_modules/lodash/_getNative.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"17:0-14","moduleId":852,"resolvedModuleId":852},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","module":"./node_modules/lodash/_nativeCreate.js","moduleName":"./node_modules/lodash/_nativeCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","resolvedModule":"./node_modules/lodash/_nativeCreate.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":4536,"resolvedModuleId":4536}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 17:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":163,"sizes":{"javascript":163},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getPrototype.js","name":"./node_modules/lodash/_getPrototype.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getPrototype.js","index":143,"preOrderIndex":143,"index2":132,"postOrderIndex":132,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","issuerName":"./node_modules/lodash/isPlainObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","name":"./node_modules/reactcss/lib/flattenNames.js","profile":{"total":26,"resolving":8,"restoring":0,"building":18,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":4147},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","name":"./node_modules/lodash/isPlainObject.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8630}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":5924,"issuerId":8630,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getPrototype.js","module":"./node_modules/lodash/_getPrototype.js","moduleName":"./node_modules/lodash/_getPrototype.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getPrototype.js","resolvedModule":"./node_modules/lodash/_getPrototype.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":5924,"resolvedModuleId":5924},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","module":"./node_modules/lodash/_getSymbolsIn.js","moduleName":"./node_modules/lodash/_getSymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","resolvedModule":"./node_modules/lodash/_getSymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getPrototype","loc":"2:19-45","moduleId":1442,"resolvedModuleId":1442},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","module":"./node_modules/lodash/_initCloneObject.js","moduleName":"./node_modules/lodash/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","resolvedModule":"./node_modules/lodash/_initCloneObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getPrototype","loc":"2:19-45","moduleId":8517,"resolvedModuleId":8517},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","module":"./node_modules/lodash/isPlainObject.js","moduleName":"./node_modules/lodash/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","resolvedModule":"./node_modules/lodash/isPlainObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getPrototype","loc":"2:19-45","moduleId":8630,"resolvedModuleId":8630}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1139,"sizes":{"javascript":1139},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","name":"./node_modules/lodash/_getRawTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","index":19,"preOrderIndex":19,"index2":8,"postOrderIndex":8,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","issuerName":"./node_modules/lodash/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","name":"./node_modules/lodash/_baseGetTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4239}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9607,"issuerId":4239,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","module":"./node_modules/lodash/_baseGetTag.js","moduleName":"./node_modules/lodash/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","resolvedModule":"./node_modules/lodash/_baseGetTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getRawTag","loc":"2:16-39","moduleId":4239,"resolvedModuleId":4239},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","module":"./node_modules/lodash/_getRawTag.js","moduleName":"./node_modules/lodash/_getRawTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","resolvedModule":"./node_modules/lodash/_getRawTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"46:0-14","moduleId":9607,"resolvedModuleId":9607}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 46:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-34","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":886,"sizes":{"javascript":886},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","name":"./node_modules/lodash/_getSymbols.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","index":169,"preOrderIndex":169,"index2":153,"postOrderIndex":153,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","issuerName":"./node_modules/lodash/_getAllKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9551,"issuerId":8234,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","module":"./node_modules/lodash/_copySymbols.js","moduleName":"./node_modules/lodash/_copySymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","resolvedModule":"./node_modules/lodash/_copySymbols.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getSymbols","loc":"2:17-41","moduleId":8805,"resolvedModuleId":8805},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","module":"./node_modules/lodash/_getAllKeys.js","moduleName":"./node_modules/lodash/_getAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","resolvedModule":"./node_modules/lodash/_getAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getSymbols","loc":"2:17-41","moduleId":8234,"resolvedModuleId":8234},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","module":"./node_modules/lodash/_getSymbols.js","moduleName":"./node_modules/lodash/_getSymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","resolvedModule":"./node_modules/lodash/_getSymbols.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":9551,"resolvedModuleId":9551},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","module":"./node_modules/lodash/_getSymbolsIn.js","moduleName":"./node_modules/lodash/_getSymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","resolvedModule":"./node_modules/lodash/_getSymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getSymbols","loc":"3:17-41","moduleId":1442,"resolvedModuleId":1442}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:39","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":754,"sizes":{"javascript":754},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","name":"./node_modules/lodash/_getSymbolsIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","index":199,"preOrderIndex":199,"index2":186,"postOrderIndex":186,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","issuerName":"./node_modules/lodash/_getAllKeysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","name":"./node_modules/lodash/_getAllKeysIn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6904}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1442,"issuerId":6904,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbolsIn.js","module":"./node_modules/lodash/_copySymbolsIn.js","moduleName":"./node_modules/lodash/_copySymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbolsIn.js","resolvedModule":"./node_modules/lodash/_copySymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getSymbolsIn","loc":"2:19-45","moduleId":1911,"resolvedModuleId":1911},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","module":"./node_modules/lodash/_getAllKeysIn.js","moduleName":"./node_modules/lodash/_getAllKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","resolvedModule":"./node_modules/lodash/_getAllKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getSymbolsIn","loc":"2:19-45","moduleId":6904,"resolvedModuleId":6904},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","module":"./node_modules/lodash/_getSymbolsIn.js","moduleName":"./node_modules/lodash/_getSymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","resolvedModule":"./node_modules/lodash/_getSymbolsIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":1442,"resolvedModuleId":1442}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:39","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1838,"sizes":{"javascript":1838},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","index":172,"preOrderIndex":172,"index2":160,"postOrderIndex":160,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"12:13-33","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"5:13-33","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","module":"./node_modules/lodash/_baseIsMap.js","moduleName":"./node_modules/lodash/_baseIsMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","resolvedModule":"./node_modules/lodash/_baseIsMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"1:13-33","moduleId":5588,"resolvedModuleId":5588},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","module":"./node_modules/lodash/_baseIsSet.js","moduleName":"./node_modules/lodash/_baseIsSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","resolvedModule":"./node_modules/lodash/_baseIsSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"1:13-33","moduleId":9221,"resolvedModuleId":9221},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"58:0-14","moduleId":4160,"resolvedModuleId":4160},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"2:13-33","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 58:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-7:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":325,"sizes":{"javascript":325},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getValue.js","name":"./node_modules/lodash/_getValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getValue.js","index":61,"preOrderIndex":61,"index2":45,"postOrderIndex":45,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","issuerName":"./node_modules/lodash/_getNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7801,"issuerId":852,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","module":"./node_modules/lodash/_getNative.js","moduleName":"./node_modules/lodash/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","resolvedModule":"./node_modules/lodash/_getNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getValue","loc":"2:15-37","moduleId":852,"resolvedModuleId":852},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getValue.js","module":"./node_modules/lodash/_getValue.js","moduleName":"./node_modules/lodash/_getValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getValue.js","resolvedModule":"./node_modules/lodash/_getValue.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"13:0-14","moduleId":7801,"resolvedModuleId":7801}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 13:0-14","Statement (ExpressionStatement) with side effects in source code at 13:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1085,"sizes":{"javascript":1085},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","index":91,"preOrderIndex":91,"index2":86,"postOrderIndex":86,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","issuerName":"./node_modules/lodash/has.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222,"issuerId":8721,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"39:0-14","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","module":"./node_modules/lodash/has.js","moduleName":"./node_modules/lodash/has.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","resolvedModule":"./node_modules/lodash/has.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hasPath","loc":"2:14-35","moduleId":8721,"resolvedModuleId":8721},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","module":"./node_modules/lodash/hasIn.js","moduleName":"./node_modules/lodash/hasIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","resolvedModule":"./node_modules/lodash/hasIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hasPath","loc":"2:14-35","moduleId":9095,"resolvedModuleId":9095}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 39:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-6:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":281,"sizes":{"javascript":281},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","name":"./node_modules/lodash/_hashClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","index":54,"preOrderIndex":54,"index2":48,"postOrderIndex":48,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1789,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashClear","loc":"1:16-39","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","module":"./node_modules/lodash/_hashClear.js","moduleName":"./node_modules/lodash/_hashClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","resolvedModule":"./node_modules/lodash/_hashClear.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":1789,"resolvedModuleId":1789}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":445,"sizes":{"javascript":445},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashDelete.js","name":"./node_modules/lodash/_hashDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashDelete.js","index":62,"preOrderIndex":62,"index2":49,"postOrderIndex":49,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":401,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashDelete","loc":"2:17-41","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashDelete.js","module":"./node_modules/lodash/_hashDelete.js","moduleName":"./node_modules/lodash/_hashDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashDelete.js","resolvedModule":"./node_modules/lodash/_hashDelete.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"17:0-14","moduleId":401,"resolvedModuleId":401}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 17:0-14","Statement (ExpressionStatement) with side effects in source code at 17:0-28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":772,"sizes":{"javascript":772},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","name":"./node_modules/lodash/_hashGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","index":63,"preOrderIndex":63,"index2":50,"postOrderIndex":50,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7667,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashGet","loc":"3:14-35","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","module":"./node_modules/lodash/_hashGet.js","moduleName":"./node_modules/lodash/_hashGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","resolvedModule":"./node_modules/lodash/_hashGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":7667,"resolvedModuleId":7667}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":626,"sizes":{"javascript":626},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","name":"./node_modules/lodash/_hashHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","index":64,"preOrderIndex":64,"index2":51,"postOrderIndex":51,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1327,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashHas","loc":"4:14-35","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","module":"./node_modules/lodash/_hashHas.js","moduleName":"./node_modules/lodash/_hashHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","resolvedModule":"./node_modules/lodash/_hashHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":1327,"resolvedModuleId":1327}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":598,"sizes":{"javascript":598},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","name":"./node_modules/lodash/_hashSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","index":65,"preOrderIndex":65,"index2":52,"postOrderIndex":52,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1866,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashSet","loc":"5:14-35","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","module":"./node_modules/lodash/_hashSet.js","moduleName":"./node_modules/lodash/_hashSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","resolvedModule":"./node_modules/lodash/_hashSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":1866,"resolvedModuleId":1866}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":692,"sizes":{"javascript":692},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneArray.js","name":"./node_modules/lodash/_initCloneArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneArray.js","index":201,"preOrderIndex":201,"index2":189,"postOrderIndex":189,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3824,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_initCloneArray","loc":"13:21-49","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneArray.js","module":"./node_modules/lodash/_initCloneArray.js","moduleName":"./node_modules/lodash/_initCloneArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneArray.js","resolvedModule":"./node_modules/lodash/_initCloneArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":3824,"resolvedModuleId":3824}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2261,"sizes":{"javascript":2261},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","name":"./node_modules/lodash/_initCloneByTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","index":202,"preOrderIndex":202,"index2":195,"postOrderIndex":195,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9148,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_initCloneByTag","loc":"14:21-49","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","module":"./node_modules/lodash/_initCloneByTag.js","moduleName":"./node_modules/lodash/_initCloneByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","resolvedModule":"./node_modules/lodash/_initCloneByTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"77:0-14","moduleId":9148,"resolvedModuleId":9148}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 77:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:52","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":486,"sizes":{"javascript":486},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","name":"./node_modules/lodash/_initCloneObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","index":208,"preOrderIndex":208,"index2":197,"postOrderIndex":197,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8517,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_initCloneObject","loc":"15:22-51","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","module":"./node_modules/lodash/_initCloneObject.js","moduleName":"./node_modules/lodash/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","resolvedModule":"./node_modules/lodash/_initCloneObject.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":8517,"resolvedModuleId":8517}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":608,"sizes":{"javascript":608},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","name":"./node_modules/lodash/_isFlattenable.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","index":96,"preOrderIndex":96,"index2":90,"postOrderIndex":90,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","issuerName":"./node_modules/lodash/_baseFlatten.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","name":"./node_modules/lodash/flatten.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5564},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","name":"./node_modules/lodash/_baseFlatten.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1078}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7285,"issuerId":1078,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","module":"./node_modules/lodash/_baseFlatten.js","moduleName":"./node_modules/lodash/_baseFlatten.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","resolvedModule":"./node_modules/lodash/_baseFlatten.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isFlattenable","loc":"2:20-47","moduleId":1078,"resolvedModuleId":1078},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","module":"./node_modules/lodash/_isFlattenable.js","moduleName":"./node_modules/lodash/_isFlattenable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","resolvedModule":"./node_modules/lodash/_isFlattenable.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":7285,"resolvedModuleId":7285}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":759,"sizes":{"javascript":759},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isIndex.js","name":"./node_modules/lodash/_isIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isIndex.js","index":25,"preOrderIndex":25,"index2":17,"postOrderIndex":17,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","issuerName":"./node_modules/lodash/_hasPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":5776,"issuerId":222,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isIndex","loc":"5:14-35","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isIndex","loc":"3:14-35","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isIndex","loc":"4:14-35","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isIndex.js","module":"./node_modules/lodash/_isIndex.js","moduleName":"./node_modules/lodash/_isIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isIndex.js","resolvedModule":"./node_modules/lodash/_isIndex.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":5776,"resolvedModuleId":5776}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (ExpressionStatement) with side effects in source code at 25:0-25","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":880,"sizes":{"javascript":880},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","name":"./node_modules/lodash/_isKey.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","index":46,"preOrderIndex":46,"index2":40,"postOrderIndex":40,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","issuerName":"./node_modules/lodash/_castPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":5403,"issuerId":1811,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isKey","loc":"4:12-31","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isKey","loc":"2:12-31","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","module":"./node_modules/lodash/_isKey.js","moduleName":"./node_modules/lodash/_isKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","resolvedModule":"./node_modules/lodash/_isKey.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"29:0-14","moduleId":5403,"resolvedModuleId":5403},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isKey","loc":"3:12-31","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 29:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":430,"sizes":{"javascript":430},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKeyable.js","name":"./node_modules/lodash/_isKeyable.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKeyable.js","index":77,"preOrderIndex":77,"index2":64,"postOrderIndex":64,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","issuerName":"./node_modules/lodash/_getMapData.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","name":"./node_modules/lodash/_mapCacheGet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6000},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","name":"./node_modules/lodash/_getMapData.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5050}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7019,"issuerId":5050,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","module":"./node_modules/lodash/_getMapData.js","moduleName":"./node_modules/lodash/_getMapData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","resolvedModule":"./node_modules/lodash/_getMapData.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isKeyable","loc":"1:16-39","moduleId":5050,"resolvedModuleId":5050},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKeyable.js","module":"./node_modules/lodash/_isKeyable.js","moduleName":"./node_modules/lodash/_isKeyable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKeyable.js","resolvedModule":"./node_modules/lodash/_isKeyable.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":7019,"resolvedModuleId":7019}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (ExpressionStatement) with side effects in source code at 15:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":564,"sizes":{"javascript":564},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","name":"./node_modules/lodash/_isMasked.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","index":58,"preOrderIndex":58,"index2":42,"postOrderIndex":42,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","issuerName":"./node_modules/lodash/_baseIsNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","name":"./node_modules/lodash/_baseIsNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8458}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5346,"issuerId":8458,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isMasked","loc":"2:15-37","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","module":"./node_modules/lodash/_isMasked.js","moduleName":"./node_modules/lodash/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","resolvedModule":"./node_modules/lodash/_isMasked.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":5346,"resolvedModuleId":5346}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":480,"sizes":{"javascript":480},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isPrototype.js","name":"./node_modules/lodash/_isPrototype.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isPrototype.js","index":32,"preOrderIndex":32,"index2":24,"postOrderIndex":24,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":5726,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","module":"./node_modules/lodash/_baseKeys.js","moduleName":"./node_modules/lodash/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","resolvedModule":"./node_modules/lodash/_baseKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isPrototype","loc":"1:18-43","moduleId":280,"resolvedModuleId":280},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","module":"./node_modules/lodash/_baseKeysIn.js","moduleName":"./node_modules/lodash/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","resolvedModule":"./node_modules/lodash/_baseKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isPrototype","loc":"2:18-43","moduleId":313,"resolvedModuleId":313},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","module":"./node_modules/lodash/_initCloneObject.js","moduleName":"./node_modules/lodash/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","resolvedModule":"./node_modules/lodash/_initCloneObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isPrototype","loc":"3:18-43","moduleId":8517,"resolvedModuleId":8517},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isPrototype.js","module":"./node_modules/lodash/_isPrototype.js","moduleName":"./node_modules/lodash/_isPrototype.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isPrototype.js","resolvedModule":"./node_modules/lodash/_isPrototype.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":5726,"resolvedModuleId":5726},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isPrototype","loc":"7:18-43","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":414,"sizes":{"javascript":414},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","name":"./node_modules/lodash/_isStrictComparable.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","index":178,"preOrderIndex":178,"index2":164,"postOrderIndex":164,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","issuerName":"./node_modules/lodash/_baseMatchesProperty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":5,"additionalIntegration":0,"factory":0,"dependencies":5},"id":9162,"issuerId":6432,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isStrictComparable","loc":"5:25-57","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","module":"./node_modules/lodash/_getMatchData.js","moduleName":"./node_modules/lodash/_getMatchData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","resolvedModule":"./node_modules/lodash/_getMatchData.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isStrictComparable","loc":"1:25-57","moduleId":1499,"resolvedModuleId":1499},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","module":"./node_modules/lodash/_isStrictComparable.js","moduleName":"./node_modules/lodash/_isStrictComparable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","resolvedModule":"./node_modules/lodash/_isStrictComparable.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":9162,"resolvedModuleId":9162}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":218,"sizes":{"javascript":218},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheClear.js","name":"./node_modules/lodash/_listCacheClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheClear.js","index":67,"preOrderIndex":67,"index2":54,"postOrderIndex":54,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7040,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheClear","loc":"1:21-49","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheClear.js","module":"./node_modules/lodash/_listCacheClear.js","moduleName":"./node_modules/lodash/_listCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheClear.js","resolvedModule":"./node_modules/lodash/_listCacheClear.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"13:0-14","moduleId":7040,"resolvedModuleId":7040}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 13:0-14","Statement (ExpressionStatement) with side effects in source code at 13:0-32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":775,"sizes":{"javascript":775},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","name":"./node_modules/lodash/_listCacheDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","index":68,"preOrderIndex":68,"index2":57,"postOrderIndex":57,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4125,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheDelete","loc":"2:22-51","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","module":"./node_modules/lodash/_listCacheDelete.js","moduleName":"./node_modules/lodash/_listCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","resolvedModule":"./node_modules/lodash/_listCacheDelete.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"35:0-14","moduleId":4125,"resolvedModuleId":4125}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 35:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":420,"sizes":{"javascript":420},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","name":"./node_modules/lodash/_listCacheGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","index":71,"preOrderIndex":71,"index2":58,"postOrderIndex":58,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2117,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheGet","loc":"3:19-45","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","module":"./node_modules/lodash/_listCacheGet.js","moduleName":"./node_modules/lodash/_listCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","resolvedModule":"./node_modules/lodash/_listCacheGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":2117,"resolvedModuleId":2117}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":403,"sizes":{"javascript":403},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","name":"./node_modules/lodash/_listCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","index":72,"preOrderIndex":72,"index2":59,"postOrderIndex":59,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7529,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheHas","loc":"4:19-45","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","module":"./node_modules/lodash/_listCacheHas.js","moduleName":"./node_modules/lodash/_listCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","resolvedModule":"./node_modules/lodash/_listCacheHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":7529,"resolvedModuleId":7529}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":553,"sizes":{"javascript":553},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","name":"./node_modules/lodash/_listCacheSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","index":73,"preOrderIndex":73,"index2":60,"postOrderIndex":60,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4705,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheSet","loc":"5:19-45","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","module":"./node_modules/lodash/_listCacheSet.js","moduleName":"./node_modules/lodash/_listCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","resolvedModule":"./node_modules/lodash/_listCacheSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":4705,"resolvedModuleId":4705}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":393,"sizes":{"javascript":393},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","index":52,"preOrderIndex":52,"index2":63,"postOrderIndex":63,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheClear","loc":"1:20-47","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","module":"./node_modules/lodash/_mapCacheClear.js","moduleName":"./node_modules/lodash/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","resolvedModule":"./node_modules/lodash/_mapCacheClear.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":4785,"resolvedModuleId":4785}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":450,"sizes":{"javascript":450},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","name":"./node_modules/lodash/_mapCacheDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","index":75,"preOrderIndex":75,"index2":66,"postOrderIndex":66,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1285,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheDelete","loc":"2:21-49","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","module":"./node_modules/lodash/_mapCacheDelete.js","moduleName":"./node_modules/lodash/_mapCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","resolvedModule":"./node_modules/lodash/_mapCacheDelete.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":1285,"resolvedModuleId":1285}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":330,"sizes":{"javascript":330},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","name":"./node_modules/lodash/_mapCacheGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","index":78,"preOrderIndex":78,"index2":67,"postOrderIndex":67,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6000,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheGet","loc":"3:18-43","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","module":"./node_modules/lodash/_mapCacheGet.js","moduleName":"./node_modules/lodash/_mapCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","resolvedModule":"./node_modules/lodash/_mapCacheGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":6000,"resolvedModuleId":6000}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":382,"sizes":{"javascript":382},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","name":"./node_modules/lodash/_mapCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","index":79,"preOrderIndex":79,"index2":68,"postOrderIndex":68,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9916,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheHas","loc":"4:18-43","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","module":"./node_modules/lodash/_mapCacheHas.js","moduleName":"./node_modules/lodash/_mapCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","resolvedModule":"./node_modules/lodash/_mapCacheHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":9916,"resolvedModuleId":9916}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":489,"sizes":{"javascript":489},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","name":"./node_modules/lodash/_mapCacheSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","index":80,"preOrderIndex":80,"index2":69,"postOrderIndex":69,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5265,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheSet","loc":"5:18-43","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","module":"./node_modules/lodash/_mapCacheSet.js","moduleName":"./node_modules/lodash/_mapCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","resolvedModule":"./node_modules/lodash/_mapCacheSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":5265,"resolvedModuleId":5265}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":363,"sizes":{"javascript":363},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapToArray.js","name":"./node_modules/lodash/_mapToArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapToArray.js","index":164,"preOrderIndex":164,"index2":147,"postOrderIndex":147,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","issuerName":"./node_modules/lodash/_equalByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","name":"./node_modules/lodash/_equalByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8351}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8776,"issuerId":8351,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapToArray","loc":"5:17-41","moduleId":8351,"resolvedModuleId":8351},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapToArray.js","module":"./node_modules/lodash/_mapToArray.js","moduleName":"./node_modules/lodash/_mapToArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapToArray.js","resolvedModule":"./node_modules/lodash/_mapToArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":8776,"resolvedModuleId":8776}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (ExpressionStatement) with side effects in source code at 18:0-28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":574,"sizes":{"javascript":574},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_matchesStrictComparable.js","name":"./node_modules/lodash/_matchesStrictComparable.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_matchesStrictComparable.js","index":179,"preOrderIndex":179,"index2":166,"postOrderIndex":166,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","issuerName":"./node_modules/lodash/_baseMatches.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2634,"issuerId":1573,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","module":"./node_modules/lodash/_baseMatches.js","moduleName":"./node_modules/lodash/_baseMatches.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","resolvedModule":"./node_modules/lodash/_baseMatches.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_matchesStrictComparable","loc":"3:30-67","moduleId":1573,"resolvedModuleId":1573},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_matchesStrictComparable","loc":"6:30-67","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_matchesStrictComparable.js","module":"./node_modules/lodash/_matchesStrictComparable.js","moduleName":"./node_modules/lodash/_matchesStrictComparable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_matchesStrictComparable.js","resolvedModule":"./node_modules/lodash/_matchesStrictComparable.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":2634,"resolvedModuleId":2634}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (ExpressionStatement) with side effects in source code at 20:0-41","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":633,"sizes":{"javascript":633},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","index":49,"preOrderIndex":49,"index2":72,"postOrderIndex":72,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","issuerName":"./node_modules/lodash/_stringToPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523,"issuerId":5514,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","module":"./node_modules/lodash/_memoizeCapped.js","moduleName":"./node_modules/lodash/_memoizeCapped.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","resolvedModule":"./node_modules/lodash/_memoizeCapped.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":4523,"resolvedModuleId":4523},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","module":"./node_modules/lodash/_stringToPath.js","moduleName":"./node_modules/lodash/_stringToPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","resolvedModule":"./node_modules/lodash/_stringToPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_memoizeCapped","loc":"1:20-47","moduleId":5514,"resolvedModuleId":5514}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":187,"sizes":{"javascript":187},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","name":"./node_modules/lodash/_nativeCreate.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","index":55,"preOrderIndex":55,"index2":47,"postOrderIndex":47,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","issuerName":"./node_modules/lodash/_hashHas.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","name":"./node_modules/lodash/_hashHas.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1327}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4536,"issuerId":1327,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","module":"./node_modules/lodash/_hashClear.js","moduleName":"./node_modules/lodash/_hashClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","resolvedModule":"./node_modules/lodash/_hashClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeCreate","loc":"1:19-45","moduleId":1789,"resolvedModuleId":1789},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","module":"./node_modules/lodash/_hashGet.js","moduleName":"./node_modules/lodash/_hashGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","resolvedModule":"./node_modules/lodash/_hashGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeCreate","loc":"1:19-45","moduleId":7667,"resolvedModuleId":7667},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","module":"./node_modules/lodash/_hashHas.js","moduleName":"./node_modules/lodash/_hashHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","resolvedModule":"./node_modules/lodash/_hashHas.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeCreate","loc":"1:19-45","moduleId":1327,"resolvedModuleId":1327},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","module":"./node_modules/lodash/_hashSet.js","moduleName":"./node_modules/lodash/_hashSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","resolvedModule":"./node_modules/lodash/_hashSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeCreate","loc":"1:19-45","moduleId":1866,"resolvedModuleId":1866},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","module":"./node_modules/lodash/_nativeCreate.js","moduleName":"./node_modules/lodash/_nativeCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","resolvedModule":"./node_modules/lodash/_nativeCreate.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":4536,"resolvedModuleId":4536}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-40","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":12},{"type":"module","moduleType":"javascript/auto","layer":null,"size":204,"sizes":{"javascript":204},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","name":"./node_modules/lodash/_nativeKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","index":33,"preOrderIndex":33,"index2":26,"postOrderIndex":26,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","issuerName":"./node_modules/lodash/_baseKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","name":"./node_modules/lodash/_baseKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":280}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6916,"issuerId":280,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","module":"./node_modules/lodash/_baseKeys.js","moduleName":"./node_modules/lodash/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","resolvedModule":"./node_modules/lodash/_baseKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeKeys","loc":"2:17-41","moduleId":280,"resolvedModuleId":280},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","module":"./node_modules/lodash/_nativeKeys.js","moduleName":"./node_modules/lodash/_nativeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","resolvedModule":"./node_modules/lodash/_nativeKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":6916,"resolvedModuleId":6916}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":490,"sizes":{"javascript":490},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeysIn.js","name":"./node_modules/lodash/_nativeKeysIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeysIn.js","index":194,"preOrderIndex":194,"index2":179,"postOrderIndex":179,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","issuerName":"./node_modules/lodash/_baseKeysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","name":"./node_modules/lodash/keysIn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1704},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","name":"./node_modules/lodash/_baseKeysIn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":313}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3498,"issuerId":313,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","module":"./node_modules/lodash/_baseKeysIn.js","moduleName":"./node_modules/lodash/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","resolvedModule":"./node_modules/lodash/_baseKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeKeysIn","loc":"3:19-45","moduleId":313,"resolvedModuleId":313},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeysIn.js","module":"./node_modules/lodash/_nativeKeysIn.js","moduleName":"./node_modules/lodash/_nativeKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeysIn.js","resolvedModule":"./node_modules/lodash/_nativeKeysIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":3498,"resolvedModuleId":3498}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (ExpressionStatement) with side effects in source code at 20:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":12},{"type":"module","moduleType":"javascript/auto","layer":null,"size":995,"sizes":{"javascript":995},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","name":"./node_modules/lodash/_nodeUtil.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","index":30,"preOrderIndex":30,"index2":21,"postOrderIndex":21,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","issuerName":"./node_modules/lodash/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","name":"./node_modules/lodash/isTypedArray.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6719}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":1167,"issuerId":6719,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:48-55","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:60-76","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:80-87","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:61-67","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:72-78","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:91-97","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","module":"./node_modules/lodash/isMap.js","moduleName":"./node_modules/lodash/isMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","resolvedModule":"./node_modules/lodash/isMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nodeUtil","loc":"3:15-37","moduleId":6688,"resolvedModuleId":6688},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","module":"./node_modules/lodash/isSet.js","moduleName":"./node_modules/lodash/isSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","resolvedModule":"./node_modules/lodash/isSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nodeUtil","loc":"3:15-37","moduleId":2928,"resolvedModuleId":2928},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","module":"./node_modules/lodash/isTypedArray.js","moduleName":"./node_modules/lodash/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","resolvedModule":"./node_modules/lodash/isTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nodeUtil","loc":"3:15-37","moduleId":6719,"resolvedModuleId":6719}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: exports is used directly at 4:48-55","CommonJS bailout: exports is used directly at 4:80-87","CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":565,"sizes":{"javascript":565},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_objectToString.js","name":"./node_modules/lodash/_objectToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_objectToString.js","index":20,"preOrderIndex":20,"index2":9,"postOrderIndex":9,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","issuerName":"./node_modules/lodash/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","name":"./node_modules/lodash/_baseGetTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4239}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2333,"issuerId":4239,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","module":"./node_modules/lodash/_baseGetTag.js","moduleName":"./node_modules/lodash/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","resolvedModule":"./node_modules/lodash/_baseGetTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_objectToString","loc":"3:21-49","moduleId":4239,"resolvedModuleId":4239},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_objectToString.js","module":"./node_modules/lodash/_objectToString.js","moduleName":"./node_modules/lodash/_objectToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_objectToString.js","resolvedModule":"./node_modules/lodash/_objectToString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":2333,"resolvedModuleId":2333}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":382,"sizes":{"javascript":382},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overArg.js","name":"./node_modules/lodash/_overArg.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overArg.js","index":34,"preOrderIndex":34,"index2":25,"postOrderIndex":25,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","issuerName":"./node_modules/lodash/_nativeKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","name":"./node_modules/lodash/_baseKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":280},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","name":"./node_modules/lodash/_nativeKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6916}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":5569,"issuerId":6916,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getPrototype.js","module":"./node_modules/lodash/_getPrototype.js","moduleName":"./node_modules/lodash/_getPrototype.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getPrototype.js","resolvedModule":"./node_modules/lodash/_getPrototype.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_overArg","loc":"1:14-35","moduleId":5924,"resolvedModuleId":5924},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","module":"./node_modules/lodash/_nativeKeys.js","moduleName":"./node_modules/lodash/_nativeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","resolvedModule":"./node_modules/lodash/_nativeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_overArg","loc":"1:14-35","moduleId":6916,"resolvedModuleId":6916},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overArg.js","module":"./node_modules/lodash/_overArg.js","moduleName":"./node_modules/lodash/_overArg.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overArg.js","resolvedModule":"./node_modules/lodash/_overArg.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":5569,"resolvedModuleId":5569}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (ExpressionStatement) with side effects in source code at 15:0-25","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1096,"sizes":{"javascript":1096},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overRest.js","name":"./node_modules/lodash/_overRest.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overRest.js","index":97,"preOrderIndex":97,"index2":94,"postOrderIndex":94,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","issuerName":"./node_modules/lodash/_flatRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5357,"issuerId":9021,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","module":"./node_modules/lodash/_flatRest.js","moduleName":"./node_modules/lodash/_flatRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","resolvedModule":"./node_modules/lodash/_flatRest.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_overRest","loc":"2:15-37","moduleId":9021,"resolvedModuleId":9021},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overRest.js","module":"./node_modules/lodash/_overRest.js","moduleName":"./node_modules/lodash/_overRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overRest.js","resolvedModule":"./node_modules/lodash/_overRest.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"36:0-14","moduleId":5357,"resolvedModuleId":5357}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 36:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":300,"sizes":{"javascript":300},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","name":"./node_modules/lodash/_root.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","index":17,"preOrderIndex":17,"index2":6,"postOrderIndex":6,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","issuerName":"./node_modules/lodash/now.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","name":"./node_modules/lodash/now.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7771}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":5639,"issuerId":7771,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","module":"./node_modules/lodash/_DataView.js","moduleName":"./node_modules/lodash/_DataView.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","resolvedModule":"./node_modules/lodash/_DataView.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":8552,"resolvedModuleId":8552},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","module":"./node_modules/lodash/_Map.js","moduleName":"./node_modules/lodash/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","resolvedModule":"./node_modules/lodash/_Map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":7071,"resolvedModuleId":7071},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","module":"./node_modules/lodash/_Promise.js","moduleName":"./node_modules/lodash/_Promise.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","resolvedModule":"./node_modules/lodash/_Promise.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":3818,"resolvedModuleId":3818},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","module":"./node_modules/lodash/_Set.js","moduleName":"./node_modules/lodash/_Set.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","resolvedModule":"./node_modules/lodash/_Set.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":8525,"resolvedModuleId":8525},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","module":"./node_modules/lodash/_Symbol.js","moduleName":"./node_modules/lodash/_Symbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","resolvedModule":"./node_modules/lodash/_Symbol.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":2705,"resolvedModuleId":2705},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","module":"./node_modules/lodash/_Uint8Array.js","moduleName":"./node_modules/lodash/_Uint8Array.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","resolvedModule":"./node_modules/lodash/_Uint8Array.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":1149,"resolvedModuleId":1149},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","module":"./node_modules/lodash/_WeakMap.js","moduleName":"./node_modules/lodash/_WeakMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","resolvedModule":"./node_modules/lodash/_WeakMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":577,"resolvedModuleId":577},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":4626,"resolvedModuleId":4626},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","module":"./node_modules/lodash/_coreJsData.js","moduleName":"./node_modules/lodash/_coreJsData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","resolvedModule":"./node_modules/lodash/_coreJsData.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":4429,"resolvedModuleId":4429},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","module":"./node_modules/lodash/_root.js","moduleName":"./node_modules/lodash/_root.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","resolvedModule":"./node_modules/lodash/_root.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"9:0-14","moduleId":5639,"resolvedModuleId":5639},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","module":"./node_modules/lodash/now.js","moduleName":"./node_modules/lodash/now.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","resolvedModule":"./node_modules/lodash/now.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":7771,"resolvedModuleId":7771}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 9:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":424,"sizes":{"javascript":424},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheAdd.js","name":"./node_modules/lodash/_setCacheAdd.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheAdd.js","index":158,"preOrderIndex":158,"index2":140,"postOrderIndex":140,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","issuerName":"./node_modules/lodash/_SetCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","name":"./node_modules/lodash/_SetCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8668}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":619,"issuerId":8668,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","module":"./node_modules/lodash/_SetCache.js","moduleName":"./node_modules/lodash/_SetCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","resolvedModule":"./node_modules/lodash/_SetCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_setCacheAdd","loc":"2:18-43","moduleId":8668,"resolvedModuleId":8668},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheAdd.js","module":"./node_modules/lodash/_setCacheAdd.js","moduleName":"./node_modules/lodash/_setCacheAdd.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheAdd.js","resolvedModule":"./node_modules/lodash/_setCacheAdd.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":619,"resolvedModuleId":619}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (ExpressionStatement) with side effects in source code at 19:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":316,"sizes":{"javascript":316},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheHas.js","name":"./node_modules/lodash/_setCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheHas.js","index":159,"preOrderIndex":159,"index2":141,"postOrderIndex":141,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","issuerName":"./node_modules/lodash/_SetCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","name":"./node_modules/lodash/_SetCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8668}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2385,"issuerId":8668,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","module":"./node_modules/lodash/_SetCache.js","moduleName":"./node_modules/lodash/_SetCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","resolvedModule":"./node_modules/lodash/_SetCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_setCacheHas","loc":"3:18-43","moduleId":8668,"resolvedModuleId":8668},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheHas.js","module":"./node_modules/lodash/_setCacheHas.js","moduleName":"./node_modules/lodash/_setCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheHas.js","resolvedModule":"./node_modules/lodash/_setCacheHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":2385,"resolvedModuleId":2385}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":345,"sizes":{"javascript":345},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToArray.js","name":"./node_modules/lodash/_setToArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToArray.js","index":165,"preOrderIndex":165,"index2":148,"postOrderIndex":148,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","issuerName":"./node_modules/lodash/_equalByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","name":"./node_modules/lodash/_equalByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8351}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1814,"issuerId":8351,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_setToArray","loc":"6:17-41","moduleId":8351,"resolvedModuleId":8351},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToArray.js","module":"./node_modules/lodash/_setToArray.js","moduleName":"./node_modules/lodash/_setToArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToArray.js","resolvedModule":"./node_modules/lodash/_setToArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":1814,"resolvedModuleId":1814}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (ExpressionStatement) with side effects in source code at 18:0-28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":392,"sizes":{"javascript":392},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","name":"./node_modules/lodash/_setToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","index":99,"preOrderIndex":99,"index2":98,"postOrderIndex":98,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","issuerName":"./node_modules/lodash/_flatRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":61,"issuerId":9021,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","module":"./node_modules/lodash/_flatRest.js","moduleName":"./node_modules/lodash/_flatRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","resolvedModule":"./node_modules/lodash/_flatRest.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_setToString","loc":"3:18-43","moduleId":9021,"resolvedModuleId":9021},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","module":"./node_modules/lodash/_setToString.js","moduleName":"./node_modules/lodash/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","resolvedModule":"./node_modules/lodash/_setToString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":61,"resolvedModuleId":61}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":941,"sizes":{"javascript":941},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_shortOut.js","name":"./node_modules/lodash/_shortOut.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_shortOut.js","index":102,"preOrderIndex":102,"index2":97,"postOrderIndex":97,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","issuerName":"./node_modules/lodash/_setToString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","name":"./node_modules/lodash/_setToString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":61}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1275,"issuerId":61,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","module":"./node_modules/lodash/_setToString.js","moduleName":"./node_modules/lodash/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","resolvedModule":"./node_modules/lodash/_setToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_shortOut","loc":"2:15-37","moduleId":61,"resolvedModuleId":61},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_shortOut.js","module":"./node_modules/lodash/_shortOut.js","moduleName":"./node_modules/lodash/_shortOut.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_shortOut.js","resolvedModule":"./node_modules/lodash/_shortOut.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":1275,"resolvedModuleId":1275}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (VariableDeclaration) with side effects in source code at 6:0-25","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":254,"sizes":{"javascript":254},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","name":"./node_modules/lodash/_stackClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","index":149,"preOrderIndex":149,"index2":134,"postOrderIndex":134,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7465,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackClear","loc":"2:17-41","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","module":"./node_modules/lodash/_stackClear.js","moduleName":"./node_modules/lodash/_stackClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","resolvedModule":"./node_modules/lodash/_stackClear.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":7465,"resolvedModuleId":7465}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-40","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":405,"sizes":{"javascript":405},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackDelete.js","name":"./node_modules/lodash/_stackDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackDelete.js","index":150,"preOrderIndex":150,"index2":135,"postOrderIndex":135,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3779,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackDelete","loc":"3:18-43","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackDelete.js","module":"./node_modules/lodash/_stackDelete.js","moduleName":"./node_modules/lodash/_stackDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackDelete.js","resolvedModule":"./node_modules/lodash/_stackDelete.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":3779,"resolvedModuleId":3779}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (ExpressionStatement) with side effects in source code at 18:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":271,"sizes":{"javascript":271},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackGet.js","name":"./node_modules/lodash/_stackGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackGet.js","index":151,"preOrderIndex":151,"index2":136,"postOrderIndex":136,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7599,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackGet","loc":"4:15-37","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackGet.js","module":"./node_modules/lodash/_stackGet.js","moduleName":"./node_modules/lodash/_stackGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackGet.js","resolvedModule":"./node_modules/lodash/_stackGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":7599,"resolvedModuleId":7599}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":323,"sizes":{"javascript":323},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackHas.js","name":"./node_modules/lodash/_stackHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackHas.js","index":152,"preOrderIndex":152,"index2":137,"postOrderIndex":137,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4758,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackHas","loc":"5:15-37","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackHas.js","module":"./node_modules/lodash/_stackHas.js","moduleName":"./node_modules/lodash/_stackHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackHas.js","resolvedModule":"./node_modules/lodash/_stackHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":4758,"resolvedModuleId":4758}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":853,"sizes":{"javascript":853},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","name":"./node_modules/lodash/_stackSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","index":153,"preOrderIndex":153,"index2":138,"postOrderIndex":138,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4309,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackSet","loc":"6:15-37","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","module":"./node_modules/lodash/_stackSet.js","moduleName":"./node_modules/lodash/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","resolvedModule":"./node_modules/lodash/_stackSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"34:0-14","moduleId":4309,"resolvedModuleId":4309}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 34:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":840,"sizes":{"javascript":840},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","index":48,"preOrderIndex":48,"index2":73,"postOrderIndex":73,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","issuerName":"./node_modules/lodash/_castPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514,"issuerId":1811,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stringToPath","loc":"3:19-45","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","module":"./node_modules/lodash/_stringToPath.js","moduleName":"./node_modules/lodash/_stringToPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","resolvedModule":"./node_modules/lodash/_stringToPath.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":5514,"resolvedModuleId":5514}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-48","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":523,"sizes":{"javascript":523},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","name":"./node_modules/lodash/_toKey.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","index":84,"preOrderIndex":84,"index2":78,"postOrderIndex":78,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","issuerName":"./node_modules/lodash/_hasPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":327,"issuerId":222,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","module":"./node_modules/lodash/_baseGet.js","moduleName":"./node_modules/lodash/_baseGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","resolvedModule":"./node_modules/lodash/_baseGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"2:12-31","moduleId":7786,"resolvedModuleId":7786},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"7:12-31","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"5:12-31","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"6:12-31","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","module":"./node_modules/lodash/_toKey.js","moduleName":"./node_modules/lodash/_toKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","resolvedModule":"./node_modules/lodash/_toKey.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":327,"resolvedModuleId":327},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"4:12-31","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":556,"sizes":{"javascript":556},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toSource.js","name":"./node_modules/lodash/_toSource.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toSource.js","index":60,"preOrderIndex":60,"index2":43,"postOrderIndex":43,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":346,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toSource","loc":"4:15-37","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toSource","loc":"7:15-37","moduleId":4160,"resolvedModuleId":4160},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toSource.js","module":"./node_modules/lodash/_toSource.js","moduleName":"./node_modules/lodash/_toSource.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toSource.js","resolvedModule":"./node_modules/lodash/_toSource.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":346,"resolvedModuleId":346}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":515,"sizes":{"javascript":515},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_trimmedEndIndex.js","name":"./node_modules/lodash/_trimmedEndIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_trimmedEndIndex.js","index":114,"preOrderIndex":114,"index2":109,"postOrderIndex":109,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","issuerName":"./node_modules/lodash/_baseTrim.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","name":"./node_modules/lodash/toNumber.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":4841},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","name":"./node_modules/lodash/_baseTrim.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7561}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7990,"issuerId":7561,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","module":"./node_modules/lodash/_baseTrim.js","moduleName":"./node_modules/lodash/_baseTrim.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","resolvedModule":"./node_modules/lodash/_baseTrim.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_trimmedEndIndex","loc":"1:22-51","moduleId":7561,"resolvedModuleId":7561},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_trimmedEndIndex.js","module":"./node_modules/lodash/_trimmedEndIndex.js","moduleName":"./node_modules/lodash/_trimmedEndIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_trimmedEndIndex.js","resolvedModule":"./node_modules/lodash/_trimmedEndIndex.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":7990,"resolvedModuleId":7990}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (ExpressionStatement) with side effects in source code at 19:0-33","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":679,"sizes":{"javascript":679},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","index":187,"preOrderIndex":187,"index2":203,"postOrderIndex":203,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","issuerName":"./node_modules/reactcss/lib/mergeClasses.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361,"issuerId":8556,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","module":"./node_modules/lodash/cloneDeep.js","moduleName":"./node_modules/lodash/cloneDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","resolvedModule":"./node_modules/lodash/cloneDeep.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"29:0-14","moduleId":361,"resolvedModuleId":361},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","module":"./node_modules/reactcss/lib/mergeClasses.js","moduleName":"./node_modules/reactcss/lib/mergeClasses.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","resolvedModule":"./node_modules/reactcss/lib/mergeClasses.js","type":"cjs require","active":true,"explanation":"","userRequest":"lodash/cloneDeep","loc":"12:18-45","moduleId":8556,"resolvedModuleId":8556}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 29:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-40","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":528,"sizes":{"javascript":528},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/constant.js","name":"./node_modules/lodash/constant.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/constant.js","index":101,"preOrderIndex":101,"index2":95,"postOrderIndex":95,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","issuerName":"./node_modules/lodash/_baseSetToString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","name":"./node_modules/lodash/_setToString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":61},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","name":"./node_modules/lodash/_baseSetToString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6560}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5703,"issuerId":6560,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","module":"./node_modules/lodash/_baseSetToString.js","moduleName":"./node_modules/lodash/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","resolvedModule":"./node_modules/lodash/_baseSetToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./constant","loc":"1:15-36","moduleId":6560,"resolvedModuleId":6560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/constant.js","module":"./node_modules/lodash/constant.js","moduleName":"./node_modules/lodash/constant.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/constant.js","resolvedModule":"./node_modules/lodash/constant.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":5703,"resolvedModuleId":5703}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (ExpressionStatement) with side effects in source code at 26:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6100,"sizes":{"javascript":6100},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","index":110,"preOrderIndex":110,"index2":112,"postOrderIndex":112,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"68:21-30","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"15:19-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"94:28-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"15:19-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"94:28-37","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"191:0-14","moduleId":3279,"resolvedModuleId":3279}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 191:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":39,"sizes":{"javascript":39},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","index":3,"preOrderIndex":3,"index2":38,"postOrderIndex":38,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","issuerName":"./src/_js/customizer/global-service.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"4:0-32","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"154:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"162:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"170:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"193:2-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"209:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"310:2-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"451:2-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"4:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"154:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"162:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"170:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"193:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"209:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"310:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"451:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","module":"./src/_js/customizer/global-service.js","moduleName":"./src/_js/customizer/global-service.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"1:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","module":"./src/_js/customizer/global-service.js","moduleName":"./src/_js/customizer/global-service.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"59:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"1:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"59:2-7","moduleId":9495,"resolvedModuleId":null}],"usedExports":true,"providedExports":null,"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 1:0-38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":799,"sizes":{"javascript":799},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/eq.js","name":"./node_modules/lodash/eq.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/eq.js","index":70,"preOrderIndex":70,"index2":55,"postOrderIndex":55,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","issuerName":"./node_modules/lodash/_assignValue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","name":"./node_modules/lodash/_basePickBy.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3012},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","name":"./node_modules/lodash/_baseSet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":611},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","name":"./node_modules/lodash/_assignValue.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4865}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7813,"issuerId":4865,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","module":"./node_modules/lodash/_assignValue.js","moduleName":"./node_modules/lodash/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","resolvedModule":"./node_modules/lodash/_assignValue.js","type":"cjs require","active":true,"explanation":"","userRequest":"./eq","loc":"2:9-24","moduleId":4865,"resolvedModuleId":4865},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","module":"./node_modules/lodash/_assocIndexOf.js","moduleName":"./node_modules/lodash/_assocIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","resolvedModule":"./node_modules/lodash/_assocIndexOf.js","type":"cjs require","active":true,"explanation":"","userRequest":"./eq","loc":"1:9-24","moduleId":8470,"resolvedModuleId":8470},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./eq","loc":"3:9-24","moduleId":8351,"resolvedModuleId":8351},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/eq.js","module":"./node_modules/lodash/eq.js","moduleName":"./node_modules/lodash/eq.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/eq.js","resolvedModule":"./node_modules/lodash/eq.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":7813,"resolvedModuleId":7813}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (ExpressionStatement) with side effects in source code at 37:0-20","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":489,"sizes":{"javascript":489},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","name":"./node_modules/lodash/flatten.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","index":93,"preOrderIndex":93,"index2":92,"postOrderIndex":92,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","issuerName":"./node_modules/lodash/_flatRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5564,"issuerId":9021,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","module":"./node_modules/lodash/_flatRest.js","moduleName":"./node_modules/lodash/_flatRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","resolvedModule":"./node_modules/lodash/_flatRest.js","type":"cjs require","active":true,"explanation":"","userRequest":"./flatten","loc":"1:14-34","moduleId":9021,"resolvedModuleId":9021},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","module":"./node_modules/lodash/flatten.js","moduleName":"./node_modules/lodash/flatten.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","resolvedModule":"./node_modules/lodash/flatten.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":5564,"resolvedModuleId":5564}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1355,"sizes":{"javascript":1355},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","index":4,"preOrderIndex":4,"index2":37,"postOrderIndex":37,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","issuerName":"./node_modules/lodash/each.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486,"issuerId":6073,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","module":"./node_modules/lodash/each.js","moduleName":"./node_modules/lodash/each.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","resolvedModule":"./node_modules/lodash/each.js","type":"cjs export require","active":true,"explanation":"","userRequest":"./forEach","loc":"1:0-37","moduleId":6073,"resolvedModuleId":6073},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"41:0-14","moduleId":4486,"resolvedModuleId":4486}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 41:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":992,"sizes":{"javascript":992},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","name":"./node_modules/lodash/forOwn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","index":141,"preOrderIndex":141,"index2":131,"postOrderIndex":131,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/autoprefix.js","issuerName":"./node_modules/reactcss/lib/autoprefix.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/autoprefix.js","name":"./node_modules/reactcss/lib/autoprefix.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":4754}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2525,"issuerId":4754,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","module":"./node_modules/lodash/forOwn.js","moduleName":"./node_modules/lodash/forOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","resolvedModule":"./node_modules/lodash/forOwn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"36:0-14","moduleId":2525,"resolvedModuleId":2525},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/autoprefix.js","module":"./node_modules/reactcss/lib/autoprefix.js","moduleName":"./node_modules/reactcss/lib/autoprefix.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/autoprefix.js","resolvedModule":"./node_modules/reactcss/lib/autoprefix.js","type":"cjs require","active":true,"explanation":"","userRequest":"lodash/forOwn","loc":"8:15-39","moduleId":4754,"resolvedModuleId":4754},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","module":"./node_modules/reactcss/lib/flattenNames.js","moduleName":"./node_modules/reactcss/lib/flattenNames.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","resolvedModule":"./node_modules/reactcss/lib/flattenNames.js","type":"cjs require","active":true,"explanation":"","userRequest":"lodash/forOwn","loc":"12:15-39","moduleId":4147,"resolvedModuleId":4147},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","module":"./node_modules/reactcss/lib/mergeClasses.js","moduleName":"./node_modules/reactcss/lib/mergeClasses.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","resolvedModule":"./node_modules/reactcss/lib/mergeClasses.js","type":"cjs require","active":true,"explanation":"","userRequest":"lodash/forOwn","loc":"8:15-39","moduleId":8556,"resolvedModuleId":8556}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 36:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":884,"sizes":{"javascript":884},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","name":"./node_modules/lodash/get.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","index":181,"preOrderIndex":181,"index2":168,"postOrderIndex":168,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","issuerName":"./node_modules/lodash/_baseMatchesProperty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7361,"issuerId":6432,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./get","loc":"2:10-26","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","module":"./node_modules/lodash/get.js","moduleName":"./node_modules/lodash/get.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","resolvedModule":"./node_modules/lodash/get.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"33:0-14","moduleId":7361,"resolvedModuleId":7361}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 33:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":753,"sizes":{"javascript":753},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","name":"./node_modules/lodash/hasIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","index":89,"preOrderIndex":89,"index2":87,"postOrderIndex":87,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","issuerName":"./node_modules/lodash/_basePick.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":9095,"issuerId":5970,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./hasIn","loc":"3:12-30","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","module":"./node_modules/lodash/_basePick.js","moduleName":"./node_modules/lodash/_basePick.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","resolvedModule":"./node_modules/lodash/_basePick.js","type":"cjs require","active":true,"explanation":"","userRequest":"./hasIn","loc":"2:12-30","moduleId":5970,"resolvedModuleId":5970},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","module":"./node_modules/lodash/hasIn.js","moduleName":"./node_modules/lodash/hasIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","resolvedModule":"./node_modules/lodash/hasIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"34:0-14","moduleId":9095,"resolvedModuleId":9095}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 34:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":370,"sizes":{"javascript":370},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/identity.js","name":"./node_modules/lodash/identity.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/identity.js","index":40,"preOrderIndex":40,"index2":35,"postOrderIndex":35,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","issuerName":"./node_modules/lodash/_castFunction.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","name":"./node_modules/lodash/_castFunction.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4290}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":6557,"issuerId":4290,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./identity","loc":"3:15-36","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","module":"./node_modules/lodash/_baseSetToString.js","moduleName":"./node_modules/lodash/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","resolvedModule":"./node_modules/lodash/_baseSetToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./identity","loc":"3:15-36","moduleId":6560,"resolvedModuleId":6560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","module":"./node_modules/lodash/_castFunction.js","moduleName":"./node_modules/lodash/_castFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","resolvedModule":"./node_modules/lodash/_castFunction.js","type":"cjs require","active":true,"explanation":"","userRequest":"./identity","loc":"1:15-36","moduleId":4290,"resolvedModuleId":4290},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/identity.js","module":"./node_modules/lodash/identity.js","moduleName":"./node_modules/lodash/identity.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/identity.js","resolvedModule":"./node_modules/lodash/identity.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":6557,"resolvedModuleId":6557}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (ExpressionStatement) with side effects in source code at 21:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1026,"sizes":{"javascript":1026},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","name":"./node_modules/lodash/isArguments.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","index":13,"preOrderIndex":13,"index2":13,"postOrderIndex":13,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":5694,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArguments","loc":"2:18-42","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArguments","loc":"2:18-42","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","module":"./node_modules/lodash/_isFlattenable.js","moduleName":"./node_modules/lodash/_isFlattenable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","resolvedModule":"./node_modules/lodash/_isFlattenable.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArguments","loc":"2:18-42","moduleId":7285,"resolvedModuleId":7285},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","module":"./node_modules/lodash/isArguments.js","moduleName":"./node_modules/lodash/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","resolvedModule":"./node_modules/lodash/isArguments.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"36:0-14","moduleId":5694,"resolvedModuleId":5694},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArguments","loc":"3:18-42","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 36:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":488,"sizes":{"javascript":488},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArray.js","name":"./node_modules/lodash/isArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArray.js","index":22,"preOrderIndex":22,"index2":14,"postOrderIndex":14,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","issuerName":"./node_modules/lodash/isString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":1469,"issuerId":7037,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"3:14-34","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"16:14-34","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","module":"./node_modules/lodash/_baseGetAllKeys.js","moduleName":"./node_modules/lodash/_baseGetAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","resolvedModule":"./node_modules/lodash/_baseGetAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"2:14-34","moduleId":8866,"resolvedModuleId":8866},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"6:14-34","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"4:14-34","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"3:14-34","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"1:14-34","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"3:14-34","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","module":"./node_modules/lodash/_isFlattenable.js","moduleName":"./node_modules/lodash/_isFlattenable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","resolvedModule":"./node_modules/lodash/_isFlattenable.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"3:14-34","moduleId":7285,"resolvedModuleId":7285},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","module":"./node_modules/lodash/_isKey.js","moduleName":"./node_modules/lodash/_isKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","resolvedModule":"./node_modules/lodash/_isKey.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"1:14-34","moduleId":5403,"resolvedModuleId":5403},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"4:14-34","moduleId":4486,"resolvedModuleId":4486},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArray.js","module":"./node_modules/lodash/isArray.js","moduleName":"./node_modules/lodash/isArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArray.js","resolvedModule":"./node_modules/lodash/isArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":1469,"resolvedModuleId":1469},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"4:14-34","moduleId":1609,"resolvedModuleId":1609},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","module":"./node_modules/lodash/isString.js","moduleName":"./node_modules/lodash/isString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","resolvedModule":"./node_modules/lodash/isString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"2:14-34","moduleId":7037,"resolvedModuleId":7037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","module":"./node_modules/lodash/map.js","moduleName":"./node_modules/lodash/map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","resolvedModule":"./node_modules/lodash/map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"4:14-34","moduleId":5161,"resolvedModuleId":5161}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 24:0-28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":830,"sizes":{"javascript":830},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","name":"./node_modules/lodash/isArrayLike.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","index":35,"preOrderIndex":35,"index2":30,"postOrderIndex":30,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":8612,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","module":"./node_modules/lodash/_baseMap.js","moduleName":"./node_modules/lodash/_baseMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","resolvedModule":"./node_modules/lodash/_baseMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"2:18-42","moduleId":9199,"resolvedModuleId":9199},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","module":"./node_modules/lodash/_createBaseEach.js","moduleName":"./node_modules/lodash/_createBaseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","resolvedModule":"./node_modules/lodash/_createBaseEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"1:18-42","moduleId":9291,"resolvedModuleId":9291},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","module":"./node_modules/lodash/_createFind.js","moduleName":"./node_modules/lodash/_createFind.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","resolvedModule":"./node_modules/lodash/_createFind.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"2:18-42","moduleId":7740,"resolvedModuleId":7740},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","module":"./node_modules/lodash/includes.js","moduleName":"./node_modules/lodash/includes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","resolvedModule":"./node_modules/lodash/includes.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"2:18-42","moduleId":4721,"resolvedModuleId":4721},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","module":"./node_modules/lodash/isArrayLike.js","moduleName":"./node_modules/lodash/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","resolvedModule":"./node_modules/lodash/isArrayLike.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"33:0-14","moduleId":8612,"resolvedModuleId":8612},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"5:18-42","moduleId":1609,"resolvedModuleId":1609},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","module":"./node_modules/lodash/keys.js","moduleName":"./node_modules/lodash/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","resolvedModule":"./node_modules/lodash/keys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"3:18-42","moduleId":3674,"resolvedModuleId":3674},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","module":"./node_modules/lodash/keysIn.js","moduleName":"./node_modules/lodash/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","resolvedModule":"./node_modules/lodash/keysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"3:18-42","moduleId":1704,"resolvedModuleId":1704}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 33:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1114,"sizes":{"javascript":1114},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","name":"./node_modules/lodash/isBuffer.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","index":23,"preOrderIndex":23,"index2":16,"postOrderIndex":16,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4144,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isBuffer","loc":"4:15-36","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isBuffer","loc":"17:15-36","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isBuffer","loc":"7:15-36","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"5:48-55","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"5:60-76","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"5:80-87","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"8:61-67","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"8:72-78","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"8:91-97","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"38:0-14","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isBuffer","loc":"6:15-36","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: exports is used directly at 5:48-55","CommonJS bailout: exports is used directly at 5:80-87","CommonJS bailout: module.exports is used directly at 38:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:39","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":993,"sizes":{"javascript":993},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","name":"./node_modules/lodash/isFunction.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","index":36,"preOrderIndex":36,"index2":29,"postOrderIndex":29,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","issuerName":"./node_modules/lodash/isArrayLike.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","name":"./node_modules/lodash/isArrayLike.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":8612}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":3560,"issuerId":8612,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isFunction","loc":"1:17-40","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","module":"./node_modules/lodash/isArrayLike.js","moduleName":"./node_modules/lodash/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","resolvedModule":"./node_modules/lodash/isArrayLike.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isFunction","loc":"1:17-40","moduleId":8612,"resolvedModuleId":8612},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","module":"./node_modules/lodash/isFunction.js","moduleName":"./node_modules/lodash/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","resolvedModule":"./node_modules/lodash/isFunction.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":3560,"resolvedModuleId":3560}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":802,"sizes":{"javascript":802},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isLength.js","name":"./node_modules/lodash/isLength.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isLength.js","index":28,"preOrderIndex":28,"index2":18,"postOrderIndex":18,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","issuerName":"./node_modules/lodash/_hasPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":1780,"issuerId":222,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","module":"./node_modules/lodash/_baseIsTypedArray.js","moduleName":"./node_modules/lodash/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash/_baseIsTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isLength","loc":"2:15-36","moduleId":8749,"resolvedModuleId":8749},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isLength","loc":"5:15-36","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","module":"./node_modules/lodash/isArrayLike.js","moduleName":"./node_modules/lodash/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","resolvedModule":"./node_modules/lodash/isArrayLike.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isLength","loc":"2:15-36","moduleId":8612,"resolvedModuleId":8612},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isLength.js","module":"./node_modules/lodash/isLength.js","moduleName":"./node_modules/lodash/isLength.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isLength.js","resolvedModule":"./node_modules/lodash/isLength.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"35:0-14","moduleId":1780,"resolvedModuleId":1780}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 35:0-14","Statement (ExpressionStatement) with side effects in source code at 35:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":613,"sizes":{"javascript":613},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","name":"./node_modules/lodash/isMap.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","index":210,"preOrderIndex":210,"index2":199,"postOrderIndex":199,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6688,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isMap","loc":"18:12-30","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","module":"./node_modules/lodash/isMap.js","moduleName":"./node_modules/lodash/isMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","resolvedModule":"./node_modules/lodash/isMap.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":6688,"resolvedModuleId":6688}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":733,"sizes":{"javascript":733},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","name":"./node_modules/lodash/isObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","index":37,"preOrderIndex":37,"index2":28,"postOrderIndex":28,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","issuerName":"./node_modules/lodash/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3218,"issuerId":3279,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"19:15-36","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","module":"./node_modules/lodash/_baseCreate.js","moduleName":"./node_modules/lodash/_baseCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","resolvedModule":"./node_modules/lodash/_baseCreate.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":3118,"resolvedModuleId":3118},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"3:15-36","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","module":"./node_modules/lodash/_baseKeysIn.js","moduleName":"./node_modules/lodash/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","resolvedModule":"./node_modules/lodash/_baseKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":313,"resolvedModuleId":313},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"4:15-36","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","module":"./node_modules/lodash/_isStrictComparable.js","moduleName":"./node_modules/lodash/_isStrictComparable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","resolvedModule":"./node_modules/lodash/_isStrictComparable.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":9162,"resolvedModuleId":9162},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":3279,"resolvedModuleId":3279},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","module":"./node_modules/lodash/isFunction.js","moduleName":"./node_modules/lodash/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","resolvedModule":"./node_modules/lodash/isFunction.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"2:15-36","moduleId":3560,"resolvedModuleId":3560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","module":"./node_modules/lodash/isObject.js","moduleName":"./node_modules/lodash/isObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","resolvedModule":"./node_modules/lodash/isObject.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"31:0-14","moduleId":3218,"resolvedModuleId":3218},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"2:15-36","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 31:0-14","Statement (ExpressionStatement) with side effects in source code at 31:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":614,"sizes":{"javascript":614},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObjectLike.js","name":"./node_modules/lodash/isObjectLike.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObjectLike.js","index":21,"preOrderIndex":21,"index2":11,"postOrderIndex":11,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","issuerName":"./node_modules/lodash/isString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":7005,"issuerId":7037,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","module":"./node_modules/lodash/_baseIsArguments.js","moduleName":"./node_modules/lodash/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","resolvedModule":"./node_modules/lodash/_baseIsArguments.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":9454,"resolvedModuleId":9454},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","module":"./node_modules/lodash/_baseIsEqual.js","moduleName":"./node_modules/lodash/_baseIsEqual.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","resolvedModule":"./node_modules/lodash/_baseIsEqual.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":939,"resolvedModuleId":939},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","module":"./node_modules/lodash/_baseIsMap.js","moduleName":"./node_modules/lodash/_baseIsMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","resolvedModule":"./node_modules/lodash/_baseIsMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":5588,"resolvedModuleId":5588},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","module":"./node_modules/lodash/_baseIsSet.js","moduleName":"./node_modules/lodash/_baseIsSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","resolvedModule":"./node_modules/lodash/_baseIsSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":9221,"resolvedModuleId":9221},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","module":"./node_modules/lodash/_baseIsTypedArray.js","moduleName":"./node_modules/lodash/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash/_baseIsTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"3:19-44","moduleId":8749,"resolvedModuleId":8749},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","module":"./node_modules/lodash/isArguments.js","moduleName":"./node_modules/lodash/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","resolvedModule":"./node_modules/lodash/isArguments.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":5694,"resolvedModuleId":5694},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","module":"./node_modules/lodash/isNumber.js","moduleName":"./node_modules/lodash/isNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","resolvedModule":"./node_modules/lodash/isNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":1763,"resolvedModuleId":1763},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObjectLike.js","module":"./node_modules/lodash/isObjectLike.js","moduleName":"./node_modules/lodash/isObjectLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObjectLike.js","resolvedModule":"./node_modules/lodash/isObjectLike.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"29:0-14","moduleId":7005,"resolvedModuleId":7005},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","module":"./node_modules/lodash/isPlainObject.js","moduleName":"./node_modules/lodash/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","resolvedModule":"./node_modules/lodash/isPlainObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"3:19-44","moduleId":8630,"resolvedModuleId":8630},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","module":"./node_modules/lodash/isString.js","moduleName":"./node_modules/lodash/isString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","resolvedModule":"./node_modules/lodash/isString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"3:19-44","moduleId":7037,"resolvedModuleId":7037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","module":"./node_modules/lodash/isSymbol.js","moduleName":"./node_modules/lodash/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","resolvedModule":"./node_modules/lodash/isSymbol.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":3448,"resolvedModuleId":3448}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 29:0-14","Statement (ExpressionStatement) with side effects in source code at 29:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1650,"sizes":{"javascript":1650},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","name":"./node_modules/lodash/isPlainObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","index":142,"preOrderIndex":142,"index2":133,"postOrderIndex":133,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","issuerName":"./node_modules/reactcss/lib/flattenNames.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","name":"./node_modules/reactcss/lib/flattenNames.js","profile":{"total":26,"resolving":8,"restoring":0,"building":18,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":4147}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8630,"issuerId":4147,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","module":"./node_modules/lodash/isPlainObject.js","moduleName":"./node_modules/lodash/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","resolvedModule":"./node_modules/lodash/isPlainObject.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"62:0-14","moduleId":8630,"resolvedModuleId":8630},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","module":"./node_modules/reactcss/lib/flattenNames.js","moduleName":"./node_modules/reactcss/lib/flattenNames.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","resolvedModule":"./node_modules/reactcss/lib/flattenNames.js","type":"cjs require","active":true,"explanation":"","userRequest":"lodash/isPlainObject","loc":"16:22-53","moduleId":4147,"resolvedModuleId":4147}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 62:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":613,"sizes":{"javascript":613},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","name":"./node_modules/lodash/isSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","index":212,"preOrderIndex":212,"index2":201,"postOrderIndex":201,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2928,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSet","loc":"20:12-30","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","module":"./node_modules/lodash/isSet.js","moduleName":"./node_modules/lodash/isSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","resolvedModule":"./node_modules/lodash/isSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":2928,"resolvedModuleId":2928}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":723,"sizes":{"javascript":723},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","index":140,"preOrderIndex":140,"index2":130,"postOrderIndex":130,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isString","loc":"6:0-40","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/isString","loc":"34:8-17","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isString","loc":"6:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/isString","loc":"34:8-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","module":"./node_modules/lodash/includes.js","moduleName":"./node_modules/lodash/includes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","resolvedModule":"./node_modules/lodash/includes.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isString","loc":"3:15-36","moduleId":4721,"resolvedModuleId":4721},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","module":"./node_modules/lodash/isString.js","moduleName":"./node_modules/lodash/isString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","resolvedModule":"./node_modules/lodash/isString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":7037,"resolvedModuleId":7037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","module":"./node_modules/reactcss/lib/flattenNames.js","moduleName":"./node_modules/reactcss/lib/flattenNames.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","resolvedModule":"./node_modules/reactcss/lib/flattenNames.js","type":"cjs require","active":true,"explanation":"","userRequest":"lodash/isString","loc":"8:17-43","moduleId":4147,"resolvedModuleId":4147}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":682,"sizes":{"javascript":682},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","name":"./node_modules/lodash/isSymbol.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","index":47,"preOrderIndex":47,"index2":39,"postOrderIndex":39,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","issuerName":"./node_modules/lodash/toNumber.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","name":"./node_modules/lodash/toNumber.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":4841}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":3448,"issuerId":4841,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSymbol","loc":"4:15-36","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","module":"./node_modules/lodash/_isKey.js","moduleName":"./node_modules/lodash/_isKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","resolvedModule":"./node_modules/lodash/_isKey.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSymbol","loc":"2:15-36","moduleId":5403,"resolvedModuleId":5403},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","module":"./node_modules/lodash/_toKey.js","moduleName":"./node_modules/lodash/_toKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","resolvedModule":"./node_modules/lodash/_toKey.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSymbol","loc":"1:15-36","moduleId":327,"resolvedModuleId":327},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","module":"./node_modules/lodash/isSymbol.js","moduleName":"./node_modules/lodash/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","resolvedModule":"./node_modules/lodash/isSymbol.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"29:0-14","moduleId":3448,"resolvedModuleId":3448},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSymbol","loc":"3:15-36","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 29:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":695,"sizes":{"javascript":695},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","name":"./node_modules/lodash/isTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","index":26,"preOrderIndex":26,"index2":22,"postOrderIndex":22,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6719,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isTypedArray","loc":"6:19-44","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isTypedArray","loc":"8:19-44","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isTypedArray","loc":"8:19-44","moduleId":1609,"resolvedModuleId":1609},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","module":"./node_modules/lodash/isTypedArray.js","moduleName":"./node_modules/lodash/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","resolvedModule":"./node_modules/lodash/isTypedArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":6719,"resolvedModuleId":6719}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":884,"sizes":{"javascript":884},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","name":"./node_modules/lodash/keys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","index":10,"preOrderIndex":10,"index2":31,"postOrderIndex":31,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","issuerName":"./node_modules/lodash/_createFind.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3674,"issuerId":7740,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","module":"./node_modules/lodash/_baseAssign.js","moduleName":"./node_modules/lodash/_baseAssign.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","resolvedModule":"./node_modules/lodash/_baseAssign.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"2:11-28","moduleId":4037,"resolvedModuleId":4037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"21:11-28","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","module":"./node_modules/lodash/_baseForOwn.js","moduleName":"./node_modules/lodash/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","resolvedModule":"./node_modules/lodash/_baseForOwn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"2:11-28","moduleId":7816,"resolvedModuleId":7816},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","module":"./node_modules/lodash/_createFind.js","moduleName":"./node_modules/lodash/_createFind.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","resolvedModule":"./node_modules/lodash/_createFind.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"3:11-28","moduleId":7740,"resolvedModuleId":7740},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","module":"./node_modules/lodash/_getAllKeys.js","moduleName":"./node_modules/lodash/_getAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","resolvedModule":"./node_modules/lodash/_getAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"3:11-28","moduleId":8234,"resolvedModuleId":8234},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","module":"./node_modules/lodash/_getMatchData.js","moduleName":"./node_modules/lodash/_getMatchData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","resolvedModule":"./node_modules/lodash/_getMatchData.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"2:11-28","moduleId":1499,"resolvedModuleId":1499},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","module":"./node_modules/lodash/keys.js","moduleName":"./node_modules/lodash/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","resolvedModule":"./node_modules/lodash/keys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":3674,"resolvedModuleId":3674},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","module":"./node_modules/lodash/values.js","moduleName":"./node_modules/lodash/values.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","resolvedModule":"./node_modules/lodash/values.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"2:11-28","moduleId":2628,"resolvedModuleId":2628}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:43","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":778,"sizes":{"javascript":778},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","name":"./node_modules/lodash/keysIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","index":192,"preOrderIndex":192,"index2":181,"postOrderIndex":181,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1704,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignIn.js","module":"./node_modules/lodash/_baseAssignIn.js","moduleName":"./node_modules/lodash/_baseAssignIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignIn.js","resolvedModule":"./node_modules/lodash/_baseAssignIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keysIn","loc":"2:13-32","moduleId":3886,"resolvedModuleId":3886},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keysIn","loc":"22:13-32","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","module":"./node_modules/lodash/_getAllKeysIn.js","moduleName":"./node_modules/lodash/_getAllKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","resolvedModule":"./node_modules/lodash/_getAllKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keysIn","loc":"3:13-32","moduleId":6904,"resolvedModuleId":6904},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","module":"./node_modules/lodash/keysIn.js","moduleName":"./node_modules/lodash/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","resolvedModule":"./node_modules/lodash/keysIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":1704,"resolvedModuleId":1704}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:43","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1621,"sizes":{"javascript":1621},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","name":"./node_modules/lodash/map.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","index":144,"preOrderIndex":144,"index2":175,"postOrderIndex":175,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","issuerName":"./node_modules/reactcss/lib/flattenNames.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","name":"./node_modules/reactcss/lib/flattenNames.js","profile":{"total":26,"resolving":8,"restoring":0,"building":18,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":4147}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5161,"issuerId":4147,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","module":"./node_modules/lodash/map.js","moduleName":"./node_modules/lodash/map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","resolvedModule":"./node_modules/lodash/map.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"53:0-14","moduleId":5161,"resolvedModuleId":5161},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","module":"./node_modules/reactcss/lib/flattenNames.js","moduleName":"./node_modules/reactcss/lib/flattenNames.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","resolvedModule":"./node_modules/reactcss/lib/flattenNames.js","type":"cjs require","active":true,"explanation":"","userRequest":"lodash/map","loc":"20:12-33","moduleId":4147,"resolvedModuleId":4147}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 53:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2224,"sizes":{"javascript":2224},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","index":50,"preOrderIndex":50,"index2":71,"postOrderIndex":71,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","issuerName":"./node_modules/lodash/_memoizeCapped.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306,"issuerId":4523,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","module":"./node_modules/lodash/_memoizeCapped.js","moduleName":"./node_modules/lodash/_memoizeCapped.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","resolvedModule":"./node_modules/lodash/_memoizeCapped.js","type":"cjs require","active":true,"explanation":"","userRequest":"./memoize","loc":"1:14-34","moduleId":4523,"resolvedModuleId":4523},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","module":"./node_modules/lodash/memoize.js","moduleName":"./node_modules/lodash/memoize.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","resolvedModule":"./node_modules/lodash/memoize.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"73:0-14","moduleId":8306,"resolvedModuleId":8306}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 73:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":520,"sizes":{"javascript":520},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","name":"./node_modules/lodash/now.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","index":111,"preOrderIndex":111,"index2":108,"postOrderIndex":108,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","issuerName":"./node_modules/lodash/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7771,"issuerId":3279,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs require","active":true,"explanation":"","userRequest":"./now","loc":"2:10-26","moduleId":3279,"resolvedModuleId":3279},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","module":"./node_modules/lodash/now.js","moduleName":"./node_modules/lodash/now.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","resolvedModule":"./node_modules/lodash/now.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":7771,"resolvedModuleId":7771}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":629,"sizes":{"javascript":629},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","index":41,"preOrderIndex":41,"index2":100,"postOrderIndex":100,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","issuerName":"./src/_js/customizer/global-service.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","module":"./src/_js/customizer/global-service.js","moduleName":"./src/_js/customizer/global-service.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/pick","loc":"2:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","module":"./src/_js/customizer/global-service.js","moduleName":"./src/_js/customizer/global-service.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/pick","loc":"57:24-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/pick","loc":"2:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/pick","loc":"57:24-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","module":"./node_modules/lodash/pick.js","moduleName":"./node_modules/lodash/pick.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","resolvedModule":"./node_modules/lodash/pick.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":8718,"resolvedModuleId":8718}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":793,"sizes":{"javascript":793},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","name":"./node_modules/lodash/property.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","index":182,"preOrderIndex":182,"index2":172,"postOrderIndex":172,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","issuerName":"./node_modules/lodash/_baseIteratee.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9601,"issuerId":7206,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./property","loc":"5:15-36","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":390,"sizes":{"javascript":390},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubArray.js","name":"./node_modules/lodash/stubArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubArray.js","index":171,"preOrderIndex":171,"index2":152,"postOrderIndex":152,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","issuerName":"./node_modules/lodash/_getSymbols.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","name":"./node_modules/lodash/_getSymbols.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9551}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":479,"issuerId":9551,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","module":"./node_modules/lodash/_getSymbols.js","moduleName":"./node_modules/lodash/_getSymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","resolvedModule":"./node_modules/lodash/_getSymbols.js","type":"cjs require","active":true,"explanation":"","userRequest":"./stubArray","loc":"2:16-38","moduleId":9551,"resolvedModuleId":9551},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","module":"./node_modules/lodash/_getSymbolsIn.js","moduleName":"./node_modules/lodash/_getSymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","resolvedModule":"./node_modules/lodash/_getSymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./stubArray","loc":"4:16-38","moduleId":1442,"resolvedModuleId":1442},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubArray.js","module":"./node_modules/lodash/stubArray.js","moduleName":"./node_modules/lodash/stubArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubArray.js","resolvedModule":"./node_modules/lodash/stubArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":479,"resolvedModuleId":479}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (ExpressionStatement) with side effects in source code at 23:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":280,"sizes":{"javascript":280},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubFalse.js","name":"./node_modules/lodash/stubFalse.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubFalse.js","index":24,"preOrderIndex":24,"index2":15,"postOrderIndex":15,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","issuerName":"./node_modules/lodash/isBuffer.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","name":"./node_modules/lodash/isBuffer.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4144}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5062,"issuerId":4144,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs require","active":true,"explanation":"","userRequest":"./stubFalse","loc":"2:16-38","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubFalse.js","module":"./node_modules/lodash/stubFalse.js","moduleName":"./node_modules/lodash/stubFalse.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubFalse.js","resolvedModule":"./node_modules/lodash/stubFalse.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":5062,"resolvedModuleId":5062}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (ExpressionStatement) with side effects in source code at 18:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1519,"sizes":{"javascript":1519},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","name":"./node_modules/lodash/toNumber.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","index":112,"preOrderIndex":112,"index2":111,"postOrderIndex":111,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","issuerName":"./node_modules/lodash/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":4841,"issuerId":3279,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toNumber","loc":"3:15-36","moduleId":3279,"resolvedModuleId":3279},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","module":"./node_modules/lodash/toFinite.js","moduleName":"./node_modules/lodash/toFinite.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","resolvedModule":"./node_modules/lodash/toFinite.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toNumber","loc":"1:15-36","moduleId":8601,"resolvedModuleId":8601},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"64:0-14","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 64:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":580,"sizes":{"javascript":580},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","name":"./node_modules/lodash/toString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","index":81,"preOrderIndex":81,"index2":76,"postOrderIndex":76,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","issuerName":"./node_modules/lodash/_castPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9833,"issuerId":1811,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toString","loc":"4:15-36","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","module":"./node_modules/lodash/toString.js","moduleName":"./node_modules/lodash/toString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","resolvedModule":"./node_modules/lodash/toString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"28:0-14","moduleId":9833,"resolvedModuleId":9833}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 28:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2108,"sizes":{"javascript":2108},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/object-assign/index.js","name":"./node_modules/object-assign/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/object-assign/index.js","index":132,"preOrderIndex":132,"index2":124,"postOrderIndex":124,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/cjs/react.production.min.js","issuerName":"./node_modules/react/cjs/react.production.min.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/index.js","name":"./node_modules/react/index.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":127,"dependencies":11},"id":7294},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/cjs/react.production.min.js","name":"./node_modules/react/cjs/react.production.min.js","profile":{"total":43,"resolving":17,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":2408}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7418,"issuerId":2408,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/object-assign/index.js","module":"./node_modules/object-assign/index.js","moduleName":"./node_modules/object-assign/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/object-assign/index.js","resolvedModule":"./node_modules/object-assign/index.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"65:0-14","moduleId":7418,"resolvedModuleId":7418},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/cjs/react.production.min.js","module":"./node_modules/react/cjs/react.production.min.js","moduleName":"./node_modules/react/cjs/react.production.min.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/cjs/react.production.min.js","resolvedModule":"./node_modules/react/cjs/react.production.min.js","type":"cjs require","active":true,"explanation":"","userRequest":"object-assign","loc":"9:19-43","moduleId":2408,"resolvedModuleId":2408}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 65:0-14","Statement (VariableDeclaration) with side effects in source code at 9:0-57","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1621,"sizes":{"javascript":1621},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/factoryWithThrowingShims.js","name":"./node_modules/prop-types/factoryWithThrowingShims.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/factoryWithThrowingShims.js","index":136,"preOrderIndex":136,"index2":128,"postOrderIndex":128,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","issuerName":"./node_modules/prop-types/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","name":"./node_modules/prop-types/index.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":0,"dependencies":13},"id":5697}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2703,"issuerId":5697,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/factoryWithThrowingShims.js","module":"./node_modules/prop-types/factoryWithThrowingShims.js","moduleName":"./node_modules/prop-types/factoryWithThrowingShims.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/factoryWithThrowingShims.js","resolvedModule":"./node_modules/prop-types/factoryWithThrowingShims.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":2703,"resolvedModuleId":2703},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","module":"./node_modules/prop-types/index.js","moduleName":"./node_modules/prop-types/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","resolvedModule":"./node_modules/prop-types/index.js","type":"cjs require","active":true,"explanation":"","userRequest":"./factoryWithThrowingShims","loc":"18:19-56","moduleId":5697,"resolvedModuleId":5697}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 10:0-65","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":710,"sizes":{"javascript":710},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","name":"./node_modules/prop-types/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","index":135,"preOrderIndex":135,"index2":129,"postOrderIndex":129,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","issuerName":"./node_modules/react-color/es/components/sketch/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":0,"dependencies":13},"id":5697,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"prop-types","loc":"2:0-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"86:14-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"87:10-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"88:10-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"89:10-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"prop-types","loc":"4:0-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"166:16-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"167:9-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"167:30-46","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"167:48-64","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"168:10-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"prop-types","loc":"4:0-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"74:10-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"74:28-47","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"74:49-65","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"74:67-82","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"75:11-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"76:11-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","module":"./node_modules/prop-types/index.js","moduleName":"./node_modules/prop-types/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","resolvedModule":"./node_modules/prop-types/index.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:2-16","moduleId":5697,"resolvedModuleId":5697},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"prop-types","loc":"2:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"86:14-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"87:10-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"88:10-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"89:10-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"prop-types","loc":"4:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"166:16-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"167:9-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"167:30-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"167:48-64","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"168:10-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"prop-types","loc":"4:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"74:10-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"74:28-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"74:49-65","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"74:67-82","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"75:11-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"76:11-27","moduleId":null,"resolvedModuleId":null}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:2-16","Statement (ExpressionStatement) with side effects in source code at 18:2-59","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":314,"sizes":{"javascript":314},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/lib/ReactPropTypesSecret.js","name":"./node_modules/prop-types/lib/ReactPropTypesSecret.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/lib/ReactPropTypesSecret.js","index":137,"preOrderIndex":137,"index2":127,"postOrderIndex":127,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/factoryWithThrowingShims.js","issuerName":"./node_modules/prop-types/factoryWithThrowingShims.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","name":"./node_modules/prop-types/index.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":0,"dependencies":13},"id":5697},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/factoryWithThrowingShims.js","name":"./node_modules/prop-types/factoryWithThrowingShims.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2703}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":414,"issuerId":2703,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/factoryWithThrowingShims.js","module":"./node_modules/prop-types/factoryWithThrowingShims.js","moduleName":"./node_modules/prop-types/factoryWithThrowingShims.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/factoryWithThrowingShims.js","resolvedModule":"./node_modules/prop-types/factoryWithThrowingShims.js","type":"cjs require","active":true,"explanation":"","userRequest":"./lib/ReactPropTypesSecret","loc":"10:27-64","moduleId":2703,"resolvedModuleId":2703},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/lib/ReactPropTypesSecret.js","module":"./node_modules/prop-types/lib/ReactPropTypesSecret.js","moduleName":"./node_modules/prop-types/lib/ReactPropTypesSecret.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/lib/ReactPropTypesSecret.js","resolvedModule":"./node_modules/prop-types/lib/ReactPropTypesSecret.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"12:0-14","moduleId":414,"resolvedModuleId":414}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 12:0-14","Statement (ExpressionStatement) with side effects in source code at 12:0-38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6450,"sizes":{"javascript":6450},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/cjs/react.production.min.js","name":"./node_modules/react/cjs/react.production.min.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/cjs/react.production.min.js","index":131,"preOrderIndex":131,"index2":125,"postOrderIndex":125,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/index.js","issuerName":"./node_modules/react/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/index.js","name":"./node_modules/react/index.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":127,"dependencies":11},"id":7294}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":17,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":2408,"issuerId":7294,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/index.js","module":"./node_modules/react/index.js","moduleName":"./node_modules/react/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/index.js","resolvedModule":"./node_modules/react/index.js","type":"cjs export require","active":true,"explanation":"","userRequest":"./cjs/react.production.min.js","loc":"4:2-59","moduleId":7294,"resolvedModuleId":7294}],"usedExports":true,"providedExports":["Children","Component","Fragment","Profiler","PureComponent","StrictMode","Suspense","__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED","cloneElement","createContext","createElement","createFactory","createRef","forwardRef","isValidElement","lazy","memo","useCallback","useContext","useDebugValue","useEffect","useImperativeHandle","useLayoutEffect","useMemo","useReducer","useRef","useState","version"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 9:13-60","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":190,"sizes":{"javascript":190},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/index.js","name":"./node_modules/react/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/index.js","index":130,"preOrderIndex":130,"index2":126,"postOrderIndex":126,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","issuerName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":127,"dependencies":11},"id":7294,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","module":"./src/_js/customizer/colors/components/source-colors/color-picker.js","moduleName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"13:0-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","module":"./src/_js/customizer/colors/components/source-colors/color-picker.js","moduleName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"26:22-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","module":"./src/_js/customizer/colors/components/source-colors/color-picker.js","moduleName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"28:18-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","module":"./src/_js/customizer/colors/components/source-colors/color-picker.js","moduleName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"33:19-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","module":"./src/_js/customizer/colors/components/source-colors/color-picker.js","moduleName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"38:18-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"13:0-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"26:22-41","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"28:18-37","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"33:19-38","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"38:18-37","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"11:0-56","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"108:13-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"111:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"114:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"116:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"117:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"128:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"131:33-52","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"131:87-106","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"139:2-15","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"139:19-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-46","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"26:9-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"26:36-54","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"26:157-176","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"11:0-56","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"58:15-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"70:4-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"70:21-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"11:0-56","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"154:13-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"157:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"170:52-71","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"184:2-15","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"184:19-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"9:0-56","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"94:13-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"97:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"109:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"114:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"117:33-52","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"117:87-106","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"125:2-15","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"125:19-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"1:0-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"73:9-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"76:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"77:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"9:0-56","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"119:13-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"130:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"135:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"138:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"139:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"142:33-52","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"142:87-106","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"150:2-15","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"150:19-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"53:9-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"63:19-38","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"103:9-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"106:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"109:6-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"116:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"119:6-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"122:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"125:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"131:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"134:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"143:6-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"146:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"147:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"150:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"157:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"89:9-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"92:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"95:6-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"102:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"105:6-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"114:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"117:6-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"126:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"129:6-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"138:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"141:6-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"51:9-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"57:13-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"60:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","resolvedModule":"./node_modules/react-color/es/helpers/interaction.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"12:0-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","resolvedModule":"./node_modules/react-color/es/helpers/interaction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"40:15-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","resolvedModule":"./node_modules/react-color/es/helpers/interaction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"43:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","resolvedModule":"./node_modules/react-color/es/helpers/interaction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"49:4-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"11:0-56","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"108:13-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"111:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"114:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"116:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"117:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"128:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"131:33-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"131:87-106","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"139:2-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"139:19-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"26:9-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"26:36-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"26:157-176","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"11:0-56","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"58:15-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"70:4-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"70:21-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","module":"./node_modules/react-color/es/components/common/EditableInput.js","moduleName":"./node_modules/react-color/es/components/common/EditableInput.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"11:0-56","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","module":"./node_modules/react-color/es/components/common/EditableInput.js","moduleName":"./node_modules/react-color/es/components/common/EditableInput.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"154:13-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","module":"./node_modules/react-color/es/components/common/EditableInput.js","moduleName":"./node_modules/react-color/es/components/common/EditableInput.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"157:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","module":"./node_modules/react-color/es/components/common/EditableInput.js","moduleName":"./node_modules/react-color/es/components/common/EditableInput.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"170:52-71","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","module":"./node_modules/react-color/es/components/common/EditableInput.js","moduleName":"./node_modules/react-color/es/components/common/EditableInput.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"184:2-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","module":"./node_modules/react-color/es/components/common/EditableInput.js","moduleName":"./node_modules/react-color/es/components/common/EditableInput.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"184:19-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"9:0-56","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"94:13-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"97:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"109:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"114:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"117:33-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"117:87-106","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"125:2-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"125:19-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"1:0-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"73:9-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"76:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"77:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"9:0-56","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"119:13-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"130:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"135:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"138:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"139:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"142:33-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"142:87-106","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"150:2-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"150:19-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"53:9-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"63:19-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"103:9-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"106:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"109:6-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"116:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"119:6-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"122:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"125:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"131:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"134:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"143:6-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"146:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"147:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"150:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"157:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"89:9-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"92:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"95:6-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"102:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"105:6-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"114:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"117:6-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"126:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"129:6-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"138:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"141:6-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"51:9-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"57:13-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"60:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","module":"./node_modules/react-color/es/helpers/interaction.js","moduleName":"./node_modules/react-color/es/helpers/interaction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","resolvedModule":"./node_modules/react-color/es/helpers/interaction.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"12:0-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","module":"./node_modules/react-color/es/helpers/interaction.js","moduleName":"./node_modules/react-color/es/helpers/interaction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","resolvedModule":"./node_modules/react-color/es/helpers/interaction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"40:15-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","module":"./node_modules/react-color/es/helpers/interaction.js","moduleName":"./node_modules/react-color/es/helpers/interaction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","resolvedModule":"./node_modules/react-color/es/helpers/interaction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"43:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","module":"./node_modules/react-color/es/helpers/interaction.js","moduleName":"./node_modules/react-color/es/helpers/interaction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","resolvedModule":"./node_modules/react-color/es/helpers/interaction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"49:4-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/components/active.js","module":"./node_modules/reactcss/lib/components/active.js","moduleName":"./node_modules/reactcss/lib/components/active.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/components/active.js","resolvedModule":"./node_modules/reactcss/lib/components/active.js","type":"cjs require","active":true,"explanation":"","userRequest":"react","loc":"10:13-29","moduleId":6002,"resolvedModuleId":6002},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/components/hover.js","module":"./node_modules/reactcss/lib/components/hover.js","moduleName":"./node_modules/reactcss/lib/components/hover.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/components/hover.js","resolvedModule":"./node_modules/reactcss/lib/components/hover.js","type":"cjs require","active":true,"explanation":"","userRequest":"react","loc":"10:13-29","moduleId":1765,"resolvedModuleId":1765}],"usedExports":true,"providedExports":["Children","Component","Fragment","Profiler","PureComponent","StrictMode","Suspense","__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED","cloneElement","createContext","createElement","createFactory","createRef","forwardRef","isValidElement","lazy","memo","useCallback","useContext","useDebugValue","useEffect","useImperativeHandle","useLayoutEffect","useMemo","useReducer","useRef","useState","version"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 4:2-60","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3082,"sizes":{"javascript":3082},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/autoprefix.js","name":"./node_modules/reactcss/lib/autoprefix.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/autoprefix.js","index":214,"preOrderIndex":214,"index2":205,"postOrderIndex":205,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","issuerName":"./node_modules/reactcss/lib/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941}],"failed":false,"errors":0,"warnings":0,"profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":4754,"issuerId":9941,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","module":"./node_modules/reactcss/lib/index.js","moduleName":"./node_modules/reactcss/lib/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","resolvedModule":"./node_modules/reactcss/lib/index.js","type":"cjs require","active":true,"explanation":"","userRequest":"./autoprefix","loc":"16:18-41","moduleId":9941,"resolvedModuleId":9941}],"usedExports":true,"providedExports":["__esModule","autoprefix","default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 3:0-5:3","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2739,"sizes":{"javascript":2739},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/components/active.js","name":"./node_modules/reactcss/lib/components/active.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/components/active.js","index":216,"preOrderIndex":216,"index2":207,"postOrderIndex":207,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","issuerName":"./node_modules/reactcss/lib/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941}],"failed":false,"errors":0,"warnings":0,"profile":{"total":33,"resolving":11,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":11,"dependencies":0},"id":6002,"issuerId":9941,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","module":"./node_modules/reactcss/lib/index.js","moduleName":"./node_modules/reactcss/lib/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","resolvedModule":"./node_modules/reactcss/lib/index.js","type":"cjs require","active":true,"explanation":"","userRequest":"./components/active","loc":"24:14-44","moduleId":9941,"resolvedModuleId":9941}],"usedExports":true,"providedExports":["__esModule","active","default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 3:0-5:3","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2728,"sizes":{"javascript":2728},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/components/hover.js","name":"./node_modules/reactcss/lib/components/hover.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/components/hover.js","index":215,"preOrderIndex":215,"index2":206,"postOrderIndex":206,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","issuerName":"./node_modules/reactcss/lib/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941}],"failed":false,"errors":0,"warnings":0,"profile":{"total":32,"resolving":11,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":11,"dependencies":0},"id":1765,"issuerId":9941,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","module":"./node_modules/reactcss/lib/index.js","moduleName":"./node_modules/reactcss/lib/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","resolvedModule":"./node_modules/reactcss/lib/index.js","type":"cjs require","active":true,"explanation":"","userRequest":"./components/hover","loc":"20:14-43","moduleId":9941,"resolvedModuleId":9941}],"usedExports":true,"providedExports":["__esModule","default","hover"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 3:0-5:3","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1293,"sizes":{"javascript":1293},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","name":"./node_modules/reactcss/lib/flattenNames.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","index":139,"preOrderIndex":139,"index2":176,"postOrderIndex":176,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","issuerName":"./node_modules/reactcss/lib/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941}],"failed":false,"errors":0,"warnings":0,"profile":{"total":26,"resolving":8,"restoring":0,"building":18,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":4147,"issuerId":9941,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","module":"./node_modules/reactcss/lib/index.js","moduleName":"./node_modules/reactcss/lib/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","resolvedModule":"./node_modules/reactcss/lib/index.js","type":"cjs require","active":true,"explanation":"","userRequest":"./flattenNames","loc":"8:20-45","moduleId":9941,"resolvedModuleId":9941}],"usedExports":true,"providedExports":["__esModule","default","flattenNames"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 3:0-5:3","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1447,"sizes":{"javascript":1447},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","index":138,"preOrderIndex":138,"index2":209,"postOrderIndex":209,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","issuerName":"./node_modules/react-color/es/components/sketch/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"12:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"57:19-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"4:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"16:15-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"12:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"134:19-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"10:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"59:19-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"3:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"14:15-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"10:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"79:19-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"4:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"25:15-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"5:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"28:15-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"4:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"16:15-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"5:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"15:15-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"12:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"57:19-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"4:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"16:15-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","module":"./node_modules/react-color/es/components/common/EditableInput.js","moduleName":"./node_modules/react-color/es/components/common/EditableInput.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"12:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","module":"./node_modules/react-color/es/components/common/EditableInput.js","moduleName":"./node_modules/react-color/es/components/common/EditableInput.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"134:19-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"10:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"59:19-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"3:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"14:15-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"10:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"79:19-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"4:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"25:15-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"5:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"28:15-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"4:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"16:15-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"5:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"15:15-23","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["ReactCSS","__esModule","default","handleActive","handleHover","hover","loop"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 3:0-5:3","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":554,"sizes":{"javascript":554},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/loop.js","name":"./node_modules/reactcss/lib/loop.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/loop.js","index":217,"preOrderIndex":217,"index2":208,"postOrderIndex":208,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","issuerName":"./node_modules/reactcss/lib/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":9,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":7742,"issuerId":9941,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","module":"./node_modules/reactcss/lib/index.js","moduleName":"./node_modules/reactcss/lib/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","resolvedModule":"./node_modules/reactcss/lib/index.js","type":"cjs require","active":true,"explanation":"","userRequest":"./loop","loc":"28:13-30","moduleId":9941,"resolvedModuleId":9941}],"usedExports":true,"providedExports":["__esModule","default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 3:0-5:3","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1289,"sizes":{"javascript":1289},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","index":186,"preOrderIndex":186,"index2":204,"postOrderIndex":204,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","issuerName":"./node_modules/reactcss/lib/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556,"issuerId":9941,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","module":"./node_modules/reactcss/lib/index.js","moduleName":"./node_modules/reactcss/lib/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","resolvedModule":"./node_modules/reactcss/lib/index.js","type":"cjs require","active":true,"explanation":"","userRequest":"./mergeClasses","loc":"12:20-45","moduleId":9941,"resolvedModuleId":9941}],"usedExports":true,"providedExports":["__esModule","default","mergeClasses"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 3:0-5:3","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6827,"sizes":{"javascript":6827},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","name":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","index":124,"preOrderIndex":124,"index2":118,"postOrderIndex":118,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","issuerName":"./src/_js/customizer-preview/style.scss","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./src/_js/customizer-preview/style.scss","profile":{"total":352,"resolving":326,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":326,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3379,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-95","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-95","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","module":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","moduleName":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","resolvedModule":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"230:0-14","moduleId":3379,"resolvedModuleId":3379}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 230:0-14","Statement (VariableDeclaration) with side effects in source code at 3:0-17:4","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":36699,"sizes":{"javascript":36699},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/tinycolor2/tinycolor.js","name":"./node_modules/tinycolor2/tinycolor.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/tinycolor2/tinycolor.js","index":334,"preOrderIndex":334,"index2":323,"postOrderIndex":323,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","issuerName":"./node_modules/react-color/es/helpers/color.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7621,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"tinycolor2","loc":"2:0-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"tinycolor2","loc":"26:25-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"tinycolor2","loc":"26:47-56","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"tinycolor2","loc":"53:57-66","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"tinycolor2","loc":"77:9-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","module":"./node_modules/react-color/es/helpers/color.js","moduleName":"./node_modules/react-color/es/helpers/color.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"tinycolor2","loc":"2:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","module":"./node_modules/react-color/es/helpers/color.js","moduleName":"./node_modules/react-color/es/helpers/color.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"tinycolor2","loc":"26:25-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","module":"./node_modules/react-color/es/helpers/color.js","moduleName":"./node_modules/react-color/es/helpers/color.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"tinycolor2","loc":"26:47-56","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","module":"./node_modules/react-color/es/helpers/color.js","moduleName":"./node_modules/react-color/es/helpers/color.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"tinycolor2","loc":"53:57-66","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","module":"./node_modules/react-color/es/helpers/color.js","moduleName":"./node_modules/react-color/es/helpers/color.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"tinycolor2","loc":"77:9-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/tinycolor2/tinycolor.js","module":"./node_modules/tinycolor2/tinycolor.js","moduleName":"./node_modules/tinycolor2/tinycolor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/tinycolor2/tinycolor.js","resolvedModule":"./node_modules/tinycolor2/tinycolor.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"1183:37-51","moduleId":7621,"resolvedModuleId":7621},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/tinycolor2/tinycolor.js","module":"./node_modules/tinycolor2/tinycolor.js","moduleName":"./node_modules/tinycolor2/tinycolor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/tinycolor2/tinycolor.js","resolvedModule":"./node_modules/tinycolor2/tinycolor.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"1184:4-18","moduleId":7621,"resolvedModuleId":7621}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 1183:37-51","CommonJS bailout: module.exports is used directly at 1184:4-18","Statement (ExpressionStatement) with side effects in source code at 5:0-1195:9","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":234579,"sizes":{"javascript":234579},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","name":"./src/_js/customizer/index.js + 169 modules","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","index":0,"preOrderIndex":0,"index2":368,"postOrderIndex":368,"cacheable":true,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":9495,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer/index.js","loc":"customizer","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer/index.js","loc":"customizer.min","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null}],"usedExports":true,"providedExports":["convertFontVariantToFVD","determineFontType","getCSSFromPalettes","getFontDetails"],"optimizationBailout":["ModuleConcatenation bailout: Cannot concat with ./node_modules/chroma-js/chroma.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss: Module uses module.id","ModuleConcatenation bailout: Cannot concat with ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss: Module uses module.id","ModuleConcatenation bailout: Cannot concat with ./node_modules/hsluv/hsluv.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/debounce.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/each.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/pick.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/prop-types/index.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/react/index.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/reactcss/lib/index.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/tinycolor2/tinycolor.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with external \"jQuery\": Module is not in strict mode"],"depth":0,"modules":[{"type":"module","moduleType":"javascript/auto","layer":null,"size":1326,"sizes":{"javascript":1326},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","index":0,"preOrderIndex":0,"index2":368,"postOrderIndex":368,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":null,"issuerName":null,"issuerPath":null,"failed":false,"errors":0,"warnings":0,"profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[],"usedExports":true,"providedExports":["convertFontVariantToFVD","determineFontType","getCSSFromPalettes","getFontDetails"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 12:0-31:3"],"depth":0},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2325,"sizes":{"javascript":2325},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","index":2,"preOrderIndex":2,"index2":101,"postOrderIndex":101,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../global-service","loc":"5:0-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"33:17-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"36:2-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"37:2-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"38:2-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"44:33-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"48:27-57","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../global-service","loc":"3:0-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../global-service","loc":"5:0-73","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"96:2-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"99:6-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"100:28-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"111:25-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./global-service","loc":"5:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./global-service","loc":"13:2-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./global-service","loc":"14:17-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./global-service","loc":"16:2-35","moduleId":null,"resolvedModuleId":null}],"usedExports":["bindConnectedFields","getCallback","getSetting","getSettingConfig","getSettings","loadSettings","setCallback","setSettings","unbindConnectedFields"],"providedExports":["bindConnectedFields","deleteCallbacks","getCallback","getCallbacks","getSetting","getSettingConfig","getSettings","loadSettings","setCallback","setSetting","setSettings","unbindConnectedFields"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 3:0-19"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3700,"sizes":{"javascript":3700},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","name":"./src/_js/customizer/create-reset-buttons.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","index":103,"preOrderIndex":103,"index2":103,"postOrderIndex":103,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":251,"resolving":8,"restoring":0,"building":243,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./create-reset-buttons","loc":"11:0-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./create-reset-buttons","loc":"17:2-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["createResetButtons"],"providedExports":["createResetButtons"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2273,"sizes":{"javascript":2273},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","name":"./src/_js/customizer/fields/range/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","index":105,"preOrderIndex":105,"index2":104,"postOrderIndex":104,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":552,"resolving":255,"restoring":0,"building":297,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":255,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fields/range","loc":"7:0-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./fields/range","loc":"18:2-19","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleRangeFields"],"providedExports":["handleRangeFields"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2003,"sizes":{"javascript":2003},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","name":"./src/_js/customizer/fields/color-select/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","index":106,"preOrderIndex":106,"index2":105,"postOrderIndex":105,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":552,"resolving":255,"restoring":0,"building":297,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":255,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fields/color-select","loc":"6:0-64","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./fields/color-select","loc":"19:2-25","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleColorSelectFields"],"providedExports":["convertToColorSelect","handleColorSelectFields"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":873,"sizes":{"javascript":873},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","name":"./src/_js/customizer/fields/tabs/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","index":107,"preOrderIndex":107,"index2":106,"postOrderIndex":106,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":552,"resolving":255,"restoring":0,"building":297,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":255,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fields/tabs","loc":"8:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./fields/tabs","loc":"20:2-12","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleTabs"],"providedExports":["handleTabs"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":4966,"sizes":{"javascript":4966},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","name":"./src/_js/customizer/folding-fields.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","index":108,"preOrderIndex":108,"index2":107,"postOrderIndex":107,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":99,"resolving":7,"restoring":0,"building":92,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./folding-fields","loc":"9:0-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./folding-fields","loc":"23:4-23","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleFoldingFields"],"providedExports":["handleFoldingFields"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3289,"sizes":{"javascript":3289},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","name":"./src/_js/customizer/colors/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","index":109,"preOrderIndex":109,"index2":350,"postOrderIndex":350,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":351,"resolving":99,"restoring":0,"building":252,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":99,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./colors","loc":"2:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./colors","loc":"27:2-18","moduleId":null,"resolvedModuleId":null}],"usedExports":["initializeColors"],"providedExports":["initializeColors"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":4726,"sizes":{"javascript":4726},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","index":116,"preOrderIndex":116,"index2":347,"postOrderIndex":347,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","module":"./src/_js/customizer/colors/color-palette-builder/index.js","moduleName":"./src/_js/customizer/colors/color-palette-builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","resolvedModule":"./src/_js/customizer/colors/color-palette-builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../components/builder","loc":"1:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","module":"./src/_js/customizer/colors/color-palette-builder/index.js","moduleName":"./src/_js/customizer/colors/color-palette-builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","resolvedModule":"./src/_js/customizer/colors/color-palette-builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../components/builder","loc":"15:54-61","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./colors/components/builder","loc":"34:0-65","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./colors/components/builder","loc":"34:0-65","moduleId":null,"resolvedModuleId":null}],"usedExports":["Builder"],"providedExports":["Builder","addAutoPalettes","getBestPositionInPalette","getCSSFromPalettes","getColorVariables","getColorsFromInputValue","getFunctionalColors","getInitialColorVaraibles","getPalettesFromColors","getSourceIndex","getValueFromColors","getVariablesCSS","mapAddSourceIndex","mapAddTextColors","mapColorToPalette","mapCorrectLightness","mapInterpolateSource","mapSanitizePalettes","mapUseSource"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 18:0-20:36"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":16020,"sizes":{"javascript":16020},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","name":"./src/_js/customizer/colors/components/builder/utils.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","index":117,"preOrderIndex":117,"index2":116,"postOrderIndex":116,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","issuerName":"./src/_js/customizer/colors/components/builder/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":804,"resolving":364,"restoring":0,"building":440,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":364,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"15:0-113","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"17:0-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./utils","loc":"17:0-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"28:27-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"58:14-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"72:22-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"75:16-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"83:17-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./colors/components/builder","loc":"34:0-65","moduleId":null,"resolvedModuleId":null}],"usedExports":["getCSSFromPalettes","getColorsFromInputValue","getPalettesFromColors","getValueFromColors"],"providedExports":["addAutoPalettes","getBestPositionInPalette","getCSSFromPalettes","getColorVariables","getColorsFromInputValue","getFunctionalColors","getInitialColorVaraibles","getPalettesFromColors","getSourceIndex","getValueFromColors","getVariablesCSS","mapAddSourceIndex","mapAddTextColors","mapColorToPalette","mapCorrectLightness","mapInterpolateSource","mapSanitizePalettes","mapUseSource"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":5030,"sizes":{"javascript":5030},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","name":"./src/_js/customizer/fonts/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","index":352,"preOrderIndex":352,"index2":364,"postOrderIndex":364,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":352,"resolving":100,"restoring":0,"building":252,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":100,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fonts","loc":"3:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./fonts","loc":"28:2-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["initializeFonts"],"providedExports":["initializeFonts"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 94:0-114:7"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1100,"sizes":{"javascript":1100},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","index":355,"preOrderIndex":355,"index2":352,"postOrderIndex":352,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"4:0-198","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"15:2-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"37:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"39:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"41:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"65:23-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"67:2-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"69:2-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"77:4-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"77:30-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"83:18-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"87:11-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"88:8-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"105:31-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./index","loc":"2:0-68","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./index","loc":"22:16-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./index","loc":"23:18-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"27:2-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./index","loc":"2:0-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"12:6-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"17:2-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"76:2-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./index","loc":"2:0-82","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"12:6-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"12:44-66","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"17:2-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"46:18-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"60:25-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"79:2-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null}],"usedExports":["getSettingID","getWrapper"],"providedExports":["convertFontVariantToFVD","determineFontType","fontsService","getCallbackFilter","getFontDetails","getSettingID","getWrapper","handleFontPopupToggle","initSubfield","loadFontValue","selfUpdateValue","standardizeNumericalValue","updateFontHeadTitle","updateVariantField"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":872,"sizes":{"javascript":872},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","name":"./src/_js/customizer/fonts/utils/get-font-details.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","index":359,"preOrderIndex":359,"index2":356,"postOrderIndex":356,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":582,"resolving":235,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":235,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"65:23-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./get-font-details","loc":"4:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./get-font-details","loc":"4:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"60:25-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null}],"usedExports":["getFontDetails"],"providedExports":["getFontDetails"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":632,"sizes":{"javascript":632},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/determine-font-type.js","name":"./src/_js/customizer/fonts/utils/determine-font-type.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/determine-font-type.js","index":360,"preOrderIndex":360,"index2":355,"postOrderIndex":355,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":581,"resolving":234,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":234,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","module":"./src/_js/customizer/fonts/utils/get-font-details.js","moduleName":"./src/_js/customizer/fonts/utils/get-font-details.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","resolvedModule":"./src/_js/customizer/fonts/utils/get-font-details.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./determine-font-type","loc":"1:0-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","module":"./src/_js/customizer/fonts/utils/get-font-details.js","moduleName":"./src/_js/customizer/fonts/utils/get-font-details.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","resolvedModule":"./src/_js/customizer/fonts/utils/get-font-details.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./determine-font-type","loc":"7:15-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./determine-font-type","loc":"3:0-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./determine-font-type","loc":"3:0-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null}],"usedExports":["determineFontType"],"providedExports":["determineFontType"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1433,"sizes":{"javascript":1433},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","name":"./src/_js/customizer/font-palettes/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","index":366,"preOrderIndex":366,"index2":365,"postOrderIndex":365,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":366,"resolving":251,"restoring":0,"building":115,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":251,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./font-palettes","loc":"4:0-57","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./font-palettes","loc":"29:2-24","moduleId":null,"resolvedModuleId":null}],"usedExports":["initializeFontPalettes"],"providedExports":["initializeFontPalettes"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1473,"sizes":{"javascript":1473},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","name":"./src/_js/customizer/scale-preview.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","index":367,"preOrderIndex":367,"index2":366,"postOrderIndex":366,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":251,"resolving":7,"restoring":0,"building":244,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./scale-preview","loc":"10:0-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./scale-preview","loc":"30:2-14","moduleId":null,"resolvedModuleId":null}],"usedExports":["scalePreview"],"providedExports":["scalePreview"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1331,"sizes":{"javascript":1331},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/convert-font-variant.js","name":"./src/_js/customizer/fonts/utils/convert-font-variant.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/convert-font-variant.js","index":368,"preOrderIndex":368,"index2":367,"postOrderIndex":367,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":580,"resolving":233,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":233,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./convert-font-variant","loc":"2:0-65","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./convert-font-variant","loc":"2:0-65","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null}],"usedExports":["convertFontVariantToFVD"],"providedExports":["convertFontVariantToFVD"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1575,"sizes":{"javascript":1575},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/api-set-setting-value.js","name":"./src/_js/customizer/utils/api-set-setting-value.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/api-set-setting-value.js","index":104,"preOrderIndex":104,"index2":102,"postOrderIndex":102,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","issuerName":"./src/_js/customizer/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","name":"./src/_js/customizer/create-reset-buttons.js","profile":{"total":251,"resolving":8,"restoring":0,"building":243,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","name":"./src/_js/customizer/utils/index.js","profile":{"total":895,"resolving":639,"restoring":0,"building":256,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":639,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":328,"resolving":211,"restoring":0,"building":117,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":211,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"64:6-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"91:12-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"116:8-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","module":"./src/_js/customizer/utils/index.js","moduleName":"./src/_js/customizer/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","resolvedModule":"./src/_js/customizer/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./api-set-setting-value","loc":"1:0-61","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","module":"./src/_js/customizer/utils/index.js","moduleName":"./src/_js/customizer/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","resolvedModule":"./src/_js/customizer/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./api-set-setting-value","loc":"1:0-61","moduleId":null,"resolvedModuleId":null}],"usedExports":["apiSetSettingValue"],"providedExports":["apiSetSettingValue"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":698,"sizes":{"javascript":698},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","name":"./src/_js/customizer/colors/color-palette-builder/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","index":115,"preOrderIndex":115,"index2":348,"postOrderIndex":348,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","issuerName":"./src/_js/customizer/colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","name":"./src/_js/customizer/colors/index.js","profile":{"total":351,"resolving":99,"restoring":0,"building":252,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":99,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":846,"resolving":577,"restoring":0,"building":269,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":577,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./color-palette-builder","loc":"2:0-67","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./color-palette-builder","loc":"9:2-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["initializePaletteBuilder"],"providedExports":["initializePaletteBuilder"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1230,"sizes":{"javascript":1230},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/contrast-array.js","name":"./src/_js/customizer/colors/components/builder/contrast-array.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/contrast-array.js","index":120,"preOrderIndex":120,"index2":115,"postOrderIndex":115,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","issuerName":"./src/_js/customizer/colors/components/builder/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","name":"./src/_js/customizer/colors/components/builder/utils.js","profile":{"total":804,"resolving":364,"restoring":0,"building":440,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":364,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":141,"resolving":69,"restoring":0,"building":72,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":69,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./contrast-array","loc":"21:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./contrast-array","loc":"209:42-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./contrast-array","loc":"277:38-51","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-3:3"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":112,"sizes":{"javascript":112},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/context.js","name":"./src/_js/customizer/colors/context.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/context.js","index":121,"preOrderIndex":121,"index2":117,"postOrderIndex":117,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","issuerName":"./src/_js/customizer/colors/components/builder/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":617,"resolving":362,"restoring":0,"building":255,"integration":0,"storing":0,"additionalResolving":12,"additionalIntegration":0,"factory":362,"dependencies":12},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../context","loc":"14:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../context","loc":"85:42-64","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../context","loc":"16:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../context","loc":"26:31-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../context","loc":"101:32-45","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-45"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6954,"sizes":{"javascript":6954},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","index":122,"preOrderIndex":122,"index2":346,"postOrderIndex":346,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","issuerName":"./src/_js/customizer/colors/components/builder/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../source-colors","loc":"13:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../source-colors","loc":"92:38-50","moduleId":null,"resolvedModuleId":null}],"usedExports":["SourceColors"],"providedExports":["SourceColors"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 18:0-22:32"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1237,"sizes":{"javascript":1237},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/utils.js","name":"./src/_js/customizer/colors/utils.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/utils.js","index":351,"preOrderIndex":351,"index2":349,"postOrderIndex":349,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","issuerName":"./src/_js/customizer/colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","name":"./src/_js/customizer/colors/index.js","profile":{"total":351,"resolving":99,"restoring":0,"building":252,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":99,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":574,"resolving":189,"restoring":0,"building":385,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":189,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"3:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"61:19-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"65:19-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["moveConnectedFields"],"providedExports":["moveConnectedFields"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":740,"sizes":{"javascript":740},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","name":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","index":353,"preOrderIndex":353,"index2":351,"postOrderIndex":351,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":582,"resolving":235,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":235,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"15:2-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./handle-font-popup-toggle","loc":"5:0-67","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./handle-font-popup-toggle","loc":"5:0-67","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleFontPopupToggle"],"providedExports":["handleFontPopupToggle"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1014,"sizes":{"javascript":1014},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","name":"./src/_js/customizer/fonts/utils/init-subfield.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","index":354,"preOrderIndex":354,"index2":358,"postOrderIndex":358,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":582,"resolving":236,"restoring":0,"building":346,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":236,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"37:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"39:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"41:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./init-subfield","loc":"6:0-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./init-subfield","loc":"6:0-47","moduleId":null,"resolvedModuleId":null}],"usedExports":["initSubfield"],"providedExports":["initSubfield"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3464,"sizes":{"javascript":3464},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","name":"./src/_js/customizer/fonts/utils/self-update-value.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","index":356,"preOrderIndex":356,"index2":357,"postOrderIndex":357,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":583,"resolving":237,"restoring":0,"building":346,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":237,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"77:4-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./self-update-value","loc":"8:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./self-update-value","loc":"8:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"27:2-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["selfUpdateValue"],"providedExports":["selfUpdateValue"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":414,"sizes":{"javascript":414},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/fonts-service.js","name":"./src/_js/customizer/fonts/utils/fonts-service.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/fonts-service.js","index":357,"preOrderIndex":357,"index2":353,"postOrderIndex":353,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":596,"resolving":340,"restoring":0,"building":256,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":340,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"87:11-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fonts-service","loc":"12:0-49","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"(skipped side-effect-free modules)","userRequest":"./fonts-service","loc":"13:0-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"12:6-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"17:2-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"76:2-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"12:6-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"12:44-66","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"17:2-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"79:2-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["isLoading","isUpdating","setLoading","setUpdating"],"providedExports":["isLoading","isUpdating","setLoading","setUpdating"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-18"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2712,"sizes":{"javascript":2712},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","name":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","index":358,"preOrderIndex":358,"index2":354,"postOrderIndex":354,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":593,"resolving":237,"restoring":0,"building":356,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":237,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./standardize-numerical-value","loc":"1:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./standardize-numerical-value","loc":"42:33-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./standardize-numerical-value","loc":"76:42-67","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./standardize-numerical-value","loc":"107:37-62","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./standardize-numerical-value","loc":"9:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./standardize-numerical-value","loc":"9:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./standardize-numerical-value","loc":"4:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./standardize-numerical-value","loc":"30:26-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"46:18-43","moduleId":null,"resolvedModuleId":null}],"usedExports":["standardizeNumericalValue"],"providedExports":["standardizeNumericalValue"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":600,"sizes":{"javascript":600},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","name":"./src/_js/customizer/fonts/utils/update-font-head-title.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","index":361,"preOrderIndex":361,"index2":359,"postOrderIndex":359,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":594,"resolving":238,"restoring":0,"building":356,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":238,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"67:2-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./update-font-head-title","loc":"10:0-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./update-font-head-title","loc":"10:0-63","moduleId":null,"resolvedModuleId":null}],"usedExports":["updateFontHeadTitle"],"providedExports":["updateFontHeadTitle"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2211,"sizes":{"javascript":2211},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","name":"./src/_js/customizer/fonts/utils/update-variant-field.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","index":362,"preOrderIndex":362,"index2":360,"postOrderIndex":360,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":596,"resolving":340,"restoring":0,"building":256,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":340,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"69:2-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./update-variant-field","loc":"11:0-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./update-variant-field","loc":"11:0-60","moduleId":null,"resolvedModuleId":null}],"usedExports":["updateVariantField"],"providedExports":["updateVariantField"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3381,"sizes":{"javascript":3381},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","name":"./src/_js/customizer/fonts/utils/load-font-value.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","index":363,"preOrderIndex":363,"index2":362,"postOrderIndex":362,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":582,"resolving":236,"restoring":0,"building":346,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":236,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"88:8-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./load-font-value","loc":"7:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./load-font-value","loc":"7:0-50","moduleId":null,"resolvedModuleId":null}],"usedExports":["loadFontValue"],"providedExports":["loadFontValue"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":5326,"sizes":{"javascript":5326},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","name":"./src/_js/customizer/fonts/utils/callback-filter.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","index":365,"preOrderIndex":365,"index2":363,"postOrderIndex":363,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":580,"resolving":233,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":233,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"105:31-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./callback-filter","loc":"1:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./callback-filter","loc":"1:0-54","moduleId":null,"resolvedModuleId":null}],"usedExports":["getCallbackFilter"],"providedExports":["getCallbackFilter"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":412,"sizes":{"javascript":412},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","name":"./src/_js/customizer/colors/components/source-colors/style.scss","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","index":123,"preOrderIndex":123,"index2":121,"postOrderIndex":121,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","issuerName":"./src/_js/customizer/colors/components/source-colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":16,"resolving":15,"restoring":0,"building":1,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":15,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./style.scss","loc":"23:0-22","moduleId":null,"resolvedModuleId":null}],"usedExports":[],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-17"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3837,"sizes":{"javascript":3837},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/utils.js","name":"./src/_js/customizer/colors/components/source-colors/utils.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/utils.js","index":127,"preOrderIndex":127,"index2":122,"postOrderIndex":122,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","issuerName":"./src/_js/customizer/colors/components/source-colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":121,"resolving":21,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"17:0-89","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"32:16-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"106:14-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"112:16-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"117:16-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"127:16-27","moduleId":null,"resolvedModuleId":null}],"usedExports":["addNewColorGroup","addNewColorToGroup","deleteColor","updateColor"],"providedExports":["addNewColorGroup","addNewColorToGroup","deleteColor","getNewColor","getNewColorGroup","getNewColorHex","updateColor"],"optimizationBailout":[],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":657,"sizes":{"javascript":657},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/use-outside-click.js","name":"./src/_js/customizer/utils/use-outside-click.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/use-outside-click.js","index":128,"preOrderIndex":128,"index2":123,"postOrderIndex":123,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","issuerName":"./src/_js/customizer/colors/components/source-colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","module":"./src/_js/customizer/colors/components/contextual-menu/index.js","moduleName":"./src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../../utils/use-outside-click","loc":"14:0-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","module":"./src/_js/customizer/colors/components/contextual-menu/index.js","moduleName":"./src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../utils/use-outside-click","loc":"36:2-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../../utils/use-outside-click","loc":"15:0-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../utils/use-outside-click","loc":"133:2-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-37"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2674,"sizes":{"javascript":2674},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","index":129,"preOrderIndex":129,"index2":342,"postOrderIndex":342,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","issuerName":"./src/_js/customizer/colors/components/source-colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./color-picker","loc":"13:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./color-picker","loc":"167:38-49","moduleId":null,"resolvedModuleId":null}],"usedExports":["ColorPicker"],"providedExports":["ColorPicker"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 15:0-35"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3345,"sizes":{"javascript":3345},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","name":"./src/_js/customizer/colors/components/contextual-menu/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","index":348,"preOrderIndex":348,"index2":345,"postOrderIndex":345,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","issuerName":"./src/_js/customizer/colors/components/source-colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":241,"resolving":131,"restoring":0,"building":110,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":131,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../contextual-menu","loc":"14:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../contextual-menu","loc":"188:39-53","moduleId":null,"resolvedModuleId":null}],"usedExports":["ContextualMenu"],"providedExports":["ContextualMenu"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 15:0-18:32"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":144,"sizes":{"javascript":144},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/round.js","name":"./src/_js/customizer/fonts/utils/round.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/round.js","index":364,"preOrderIndex":364,"index2":361,"postOrderIndex":361,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","issuerName":"./src/_js/customizer/fonts/utils/callback-filter.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","name":"./src/_js/customizer/fonts/utils/callback-filter.js","profile":{"total":580,"resolving":233,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":233,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":345,"resolving":225,"restoring":0,"building":120,"integration":0,"storing":0,"additionalResolving":225,"additionalIntegration":0,"factory":225,"dependencies":225},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./round","loc":"2:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./round","loc":"57:41-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./round","loc":"97:43-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./round","loc":"3:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./round","loc":"50:32-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./round","loc":"53:32-37","moduleId":null,"resolvedModuleId":null}],"usedExports":["round"],"providedExports":["round"],"optimizationBailout":[],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":82,"sizes":{"javascript":82},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","index":133,"preOrderIndex":133,"index2":341,"postOrderIndex":341,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","issuerName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","module":"./src/_js/customizer/colors/components/source-colors/color-picker.js","moduleName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react-color/es/Sketch","loc":"14:0-49","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","module":"./src/_js/customizer/colors/components/source-colors/color-picker.js","moduleName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react-color/es/Sketch","loc":"38:38-50","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Dependency (harmony side effect evaluation) with side effects at 1:0-50"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":412,"sizes":{"javascript":412},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","name":"./src/_js/customizer/colors/components/contextual-menu/style.scss","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","index":349,"preOrderIndex":349,"index2":344,"postOrderIndex":344,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","issuerName":"./src/_js/customizer/colors/components/contextual-menu/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","name":"./src/_js/customizer/colors/components/contextual-menu/index.js","profile":{"total":241,"resolving":131,"restoring":0,"building":110,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":131,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":7,"resolving":6,"restoring":0,"building":1,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","module":"./src/_js/customizer/colors/components/contextual-menu/index.js","moduleName":"./src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./style.scss","loc":"13:0-22","moduleId":null,"resolvedModuleId":null}],"usedExports":[],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-17"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":4979,"sizes":{"javascript":4979},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","index":134,"preOrderIndex":134,"index2":340,"postOrderIndex":340,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","issuerName":"./node_modules/react-color/es/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","module":"./node_modules/react-color/es/Sketch.js","moduleName":"./node_modules/react-color/es/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","resolvedModule":"./node_modules/react-color/es/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./components/sketch/Sketch","loc":"1:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","module":"./node_modules/react-color/es/Sketch.js","moduleName":"./node_modules/react-color/es/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","resolvedModule":"./node_modules/react-color/es/Sketch.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./components/sketch/Sketch","loc":"2:0-31","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Sketch","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":395,"sizes":{"javascript":395},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","index":218,"preOrderIndex":218,"index2":337,"postOrderIndex":337,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","issuerName":"./node_modules/react-color/es/components/sketch/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../common","loc":"8:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"109:26-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"125:30-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"134:30-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"146:28-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"178:15-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../common","loc":"7:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"95:26-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"105:26-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"117:26-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"129:26-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"141:26-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../common","loc":"7:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"60:28-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["Alpha","Checkboard","ColorWrap","EditableInput","Hue","Saturation","Swatch"],"providedExports":["Alpha","Checkboard","ColorWrap","EditableInput","Hue","Raised","Saturation","Swatch"],"optimizationBailout":["Dependency (harmony side effect evaluation) with side effects at 1:0-43"],"depth":6},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1218,"sizes":{"javascript":1218},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","index":227,"preOrderIndex":227,"index2":312,"postOrderIndex":312,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","issuerName":"./node_modules/react-color/es/components/sketch/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"lodash-es/merge","loc":"4:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash-es/merge","loc":"14:24-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"lodash-es/merge","loc":"6:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash-es/merge","loc":"28:24-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 35:0-37:3"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3555,"sizes":{"javascript":3555},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","index":346,"preOrderIndex":346,"index2":338,"postOrderIndex":338,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","issuerName":"./node_modules/react-color/es/components/sketch/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./SketchFields","loc":"9:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./SketchFields","loc":"150:24-36","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["SketchFields","default"],"optimizationBailout":["Dependency (harmony side effect evaluation) with side effects at 3:0-26"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2282,"sizes":{"javascript":2282},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","name":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","index":347,"preOrderIndex":347,"index2":339,"postOrderIndex":339,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","issuerName":"./node_modules/react-color/es/components/sketch/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":13,"resolving":8,"restoring":0,"building":5,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./SketchPresetColors","loc":"10:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./SketchPresetColors","loc":"157:24-42","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["SketchPresetColors","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6082,"sizes":{"javascript":6082},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","name":"./node_modules/react-color/es/components/common/Alpha.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","index":219,"preOrderIndex":219,"index2":213,"postOrderIndex":213,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Alpha","loc":"1:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./Alpha","loc":"1:0-43","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Alpha","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1291,"sizes":{"javascript":1291},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","name":"./node_modules/react-color/es/components/common/Checkboard.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","index":220,"preOrderIndex":220,"index2":211,"postOrderIndex":211,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":14,"resolving":4,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Checkboard","loc":"15:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./Checkboard","loc":"114:30-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Checkboard","loc":"7:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./Checkboard","loc":"63:39-49","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Checkboard","loc":"2:0-53","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./Checkboard","loc":"2:0-53","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Checkboard","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":7163,"sizes":{"javascript":7163},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","name":"./node_modules/react-color/es/components/common/EditableInput.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","index":223,"preOrderIndex":223,"index2":214,"postOrderIndex":214,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":19,"resolving":4,"restoring":0,"building":15,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./EditableInput","loc":"3:0-59","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./EditableInput","loc":"3:0-59","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["EditableInput","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-564"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":5796,"sizes":{"javascript":5796},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","name":"./node_modules/react-color/es/components/common/Hue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","index":224,"preOrderIndex":224,"index2":216,"postOrderIndex":216,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":4,"restoring":0,"building":25,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Hue","loc":"4:0-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./Hue","loc":"4:0-39","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Hue","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-564"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2160,"sizes":{"javascript":2160},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","name":"./node_modules/react-color/es/components/common/Raised.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","index":226,"preOrderIndex":226,"index2":313,"postOrderIndex":313,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":4,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Raised","loc":"5:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./Raised","loc":"5:0-45","moduleId":null,"resolvedModuleId":null}],"usedExports":[],"providedExports":["Raised","default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 85:0-90:2"],"depth":7},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1040,"sizes":{"javascript":1040},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","index":228,"preOrderIndex":228,"index2":245,"postOrderIndex":245,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","issuerName":"./node_modules/lodash-es/merge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","module":"./node_modules/lodash-es/merge.js","moduleName":"./node_modules/lodash-es/merge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","resolvedModule":"./node_modules/lodash-es/merge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_createAssigner.js","loc":"2:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","module":"./node_modules/lodash-es/merge.js","moduleName":"./node_modules/lodash-es/merge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","resolvedModule":"./node_modules/lodash-es/merge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_createAssigner.js","loc":"35:12-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":7},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1326,"sizes":{"javascript":1326},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","index":257,"preOrderIndex":257,"index2":311,"postOrderIndex":311,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","issuerName":"./node_modules/lodash-es/merge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","module":"./node_modules/lodash-es/merge.js","moduleName":"./node_modules/lodash-es/merge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","resolvedModule":"./node_modules/lodash-es/merge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseMerge.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","module":"./node_modules/lodash-es/merge.js","moduleName":"./node_modules/lodash-es/merge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","resolvedModule":"./node_modules/lodash-es/merge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseMerge.js","loc":"36:2-11","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6337,"sizes":{"javascript":6337},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","name":"./node_modules/react-color/es/components/common/Saturation.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","index":323,"preOrderIndex":323,"index2":322,"postOrderIndex":322,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":35,"resolving":4,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Saturation","loc":"6:0-53","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./Saturation","loc":"6:0-53","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Saturation","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-564"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":4077,"sizes":{"javascript":4077},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","index":332,"preOrderIndex":332,"index2":334,"postOrderIndex":334,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./ColorWrap","loc":"7:0-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./ColorWrap","loc":"7:0-51","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["ColorWrap","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2091,"sizes":{"javascript":2091},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","index":333,"preOrderIndex":333,"index2":333,"postOrderIndex":333,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","issuerName":"./node_modules/react-color/es/components/sketch/SketchFields.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"13:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"25:27-57","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"27:23-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"35:27-57","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"37:23-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"42:33-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"65:28-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"5:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"59:6-22","moduleId":null,"resolvedModuleId":null}],"usedExports":["isValidHex","simpleCheckForValidColor","toState"],"providedExports":["getContrastingColor","isValidHex","isvalidColorString","red","simpleCheckForValidColor","toState"],"optimizationBailout":["Statement (ExportNamedDeclaration) with side effects in source code at 68:0-73:2"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2045,"sizes":{"javascript":2045},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","name":"./node_modules/react-color/es/components/common/Swatch.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","index":344,"preOrderIndex":344,"index2":336,"postOrderIndex":336,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":5,"restoring":0,"building":34,"integration":0,"storing":1,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Swatch","loc":"8:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./Swatch","loc":"8:0-45","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Swatch","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":972,"sizes":{"javascript":972},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/checkboard.js","name":"./node_modules/react-color/es/helpers/checkboard.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/checkboard.js","index":221,"preOrderIndex":221,"index2":210,"postOrderIndex":210,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","issuerName":"./node_modules/react-color/es/components/common/Checkboard.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","name":"./node_modules/react-color/es/components/common/Checkboard.js","profile":{"total":14,"resolving":4,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":27,"resolving":18,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../helpers/checkboard","loc":"5:0-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/checkboard","loc":"22:29-43","moduleId":null,"resolvedModuleId":null}],"usedExports":["get"],"providedExports":["get","render"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-25"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1215,"sizes":{"javascript":1215},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/alpha.js","name":"./node_modules/react-color/es/helpers/alpha.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/alpha.js","index":222,"preOrderIndex":222,"index2":212,"postOrderIndex":212,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","issuerName":"./node_modules/react-color/es/components/common/Alpha.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","name":"./node_modules/react-color/es/components/common/Alpha.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":18,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../helpers/alpha","loc":"13:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/alpha","loc":"32:19-40","moduleId":null,"resolvedModuleId":null}],"usedExports":["calculateChange"],"providedExports":["calculateChange"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1263,"sizes":{"javascript":1263},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/hue.js","name":"./node_modules/react-color/es/helpers/hue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/hue.js","index":225,"preOrderIndex":225,"index2":215,"postOrderIndex":215,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","issuerName":"./node_modules/react-color/es/components/common/Hue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","name":"./node_modules/react-color/es/components/common/Hue.js","profile":{"total":29,"resolving":4,"restoring":0,"building":25,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../helpers/hue","loc":"11:0-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/hue","loc":"28:19-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["calculateChange"],"providedExports":["calculateChange"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":557,"sizes":{"javascript":557},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","index":229,"preOrderIndex":229,"index2":239,"postOrderIndex":239,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","issuerName":"./node_modules/lodash-es/_createAssigner.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","module":"./node_modules/lodash-es/_createAssigner.js","moduleName":"./node_modules/lodash-es/_createAssigner.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","resolvedModule":"./node_modules/lodash-es/_createAssigner.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseRest.js","loc":"1:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","module":"./node_modules/lodash-es/_createAssigner.js","moduleName":"./node_modules/lodash-es/_createAssigner.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","resolvedModule":"./node_modules/lodash-es/_createAssigner.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseRest.js","loc":"12:9-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":731,"sizes":{"javascript":731},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isObject.js","name":"./node_modules/lodash-es/isObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isObject.js","index":237,"preOrderIndex":237,"index2":219,"postOrderIndex":219,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":26,"resolving":5,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":5,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","module":"./node_modules/lodash-es/_baseCreate.js","moduleName":"./node_modules/lodash-es/_baseCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","resolvedModule":"./node_modules/lodash-es/_baseCreate.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","module":"./node_modules/lodash-es/_baseCreate.js","moduleName":"./node_modules/lodash-es/_baseCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","resolvedModule":"./node_modules/lodash-es/_baseCreate.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"17:9-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"3:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"40:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"19:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"5:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"26:8-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"11:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"77:16-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"4:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"17:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"82:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","module":"./node_modules/lodash-es/isFunction.js","moduleName":"./node_modules/lodash-es/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","resolvedModule":"./node_modules/lodash-es/isFunction.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"2:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","module":"./node_modules/lodash-es/isFunction.js","moduleName":"./node_modules/lodash-es/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","resolvedModule":"./node_modules/lodash-es/isFunction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"28:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","module":"./node_modules/lodash-es/throttle.js","moduleName":"./node_modules/lodash-es/throttle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","resolvedModule":"./node_modules/lodash-es/throttle.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"2:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","module":"./node_modules/lodash-es/throttle.js","moduleName":"./node_modules/lodash-es/throttle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","resolvedModule":"./node_modules/lodash-es/throttle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"58:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"2:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"50:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"52:12-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":875,"sizes":{"javascript":875},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","name":"./node_modules/lodash-es/_isIterateeCall.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","index":252,"preOrderIndex":252,"index2":244,"postOrderIndex":244,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","issuerName":"./node_modules/lodash-es/_createAssigner.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":7,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","module":"./node_modules/lodash-es/_createAssigner.js","moduleName":"./node_modules/lodash-es/_createAssigner.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","resolvedModule":"./node_modules/lodash-es/_createAssigner.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isIterateeCall.js","loc":"2:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","module":"./node_modules/lodash-es/_createAssigner.js","moduleName":"./node_modules/lodash-es/_createAssigner.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","resolvedModule":"./node_modules/lodash-es/_createAssigner.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isIterateeCall.js","loc":"22:17-31","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":591,"sizes":{"javascript":591},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","name":"./node_modules/lodash-es/_baseFor.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","index":258,"preOrderIndex":258,"index2":247,"postOrderIndex":247,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":26,"resolving":5,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":5,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","module":"./node_modules/lodash-es/_baseForOwn.js","moduleName":"./node_modules/lodash-es/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","resolvedModule":"./node_modules/lodash-es/_baseForOwn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseFor.js","loc":"1:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","module":"./node_modules/lodash-es/_baseForOwn.js","moduleName":"./node_modules/lodash-es/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","resolvedModule":"./node_modules/lodash-es/_baseForOwn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseFor.js","loc":"13:19-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseFor.js","loc":"3:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseFor.js","loc":"24:2-9","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 14:0-30"],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":732,"sizes":{"javascript":732},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","index":260,"preOrderIndex":260,"index2":276,"postOrderIndex":276,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Stack.js","loc":"1:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Stack.js","loc":"25:26-31","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 21:0-35"],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":3067,"sizes":{"javascript":3067},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","index":289,"preOrderIndex":289,"index2":310,"postOrderIndex":310,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseMergeDeep.js","loc":"4:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseMergeDeep.js","loc":"27:6-19","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":454,"sizes":{"javascript":454},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_safeGet.js","name":"./node_modules/lodash-es/_safeGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_safeGet.js","index":290,"preOrderIndex":290,"index2":277,"postOrderIndex":277,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":24,"resolving":5,"restoring":0,"building":19,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_safeGet.js","loc":"7:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_safeGet.js","loc":"31:21-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_safeGet.js","loc":"14:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_safeGet.js","loc":"33:17-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_safeGet.js","loc":"34:17-24","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":580,"sizes":{"javascript":580},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","index":291,"preOrderIndex":291,"index2":279,"postOrderIndex":279,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assignMergeValue.js","loc":"2:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assignMergeValue.js","loc":"37:6-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assignMergeValue.js","loc":"1:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assignMergeValue.js","loc":"38:4-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assignMergeValue.js","loc":"91:2-18","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":776,"sizes":{"javascript":776},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","index":315,"preOrderIndex":315,"index2":306,"postOrderIndex":306,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./keysIn.js","loc":"6:0-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./keysIn.js","loc":"39:5-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","module":"./node_modules/lodash-es/toPlainObject.js","moduleName":"./node_modules/lodash-es/toPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","resolvedModule":"./node_modules/lodash-es/toPlainObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./keysIn.js","loc":"2:0-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","module":"./node_modules/lodash-es/toPlainObject.js","moduleName":"./node_modules/lodash-es/toPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","resolvedModule":"./node_modules/lodash-es/toPlainObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./keysIn.js","loc":"29:27-33","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":931,"sizes":{"javascript":931},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/saturation.js","name":"./node_modules/react-color/es/helpers/saturation.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/saturation.js","index":324,"preOrderIndex":324,"index2":314,"postOrderIndex":314,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","issuerName":"./node_modules/react-color/es/components/common/Saturation.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","name":"./node_modules/react-color/es/components/common/Saturation.js","profile":{"total":35,"resolving":4,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":31,"resolving":18,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../helpers/saturation","loc":"12:0-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/saturation","loc":"23:89-115","moduleId":null,"resolvedModuleId":null}],"usedExports":["calculateChange"],"providedExports":["calculateChange"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":2707,"sizes":{"javascript":2707},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","name":"./node_modules/lodash-es/throttle.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","index":325,"preOrderIndex":325,"index2":321,"postOrderIndex":321,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","issuerName":"./node_modules/react-color/es/components/common/Saturation.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","name":"./node_modules/react-color/es/components/common/Saturation.js","profile":{"total":35,"resolving":4,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":36,"resolving":22,"restoring":0,"building":14,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":22,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"lodash-es/throttle","loc":"11:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash-es/throttle","loc":"37:21-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":6098,"sizes":{"javascript":6098},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","index":326,"preOrderIndex":326,"index2":320,"postOrderIndex":320,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","issuerName":"./node_modules/react-color/es/components/common/ColorWrap.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","module":"./node_modules/lodash-es/throttle.js","moduleName":"./node_modules/lodash-es/throttle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","resolvedModule":"./node_modules/lodash-es/throttle.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./debounce.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","module":"./node_modules/lodash-es/throttle.js","moduleName":"./node_modules/lodash-es/throttle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","resolvedModule":"./node_modules/lodash-es/throttle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./debounce.js","loc":"62:9-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"lodash-es/debounce","loc":"12:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash-es/debounce","loc":"44:23-31","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 9:0-10:25"],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1353,"sizes":{"javascript":1353},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","index":335,"preOrderIndex":335,"index2":332,"postOrderIndex":332,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","issuerName":"./node_modules/lodash-es/each.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","module":"./node_modules/lodash-es/each.js","moduleName":"./node_modules/lodash-es/each.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","resolvedModule":"./node_modules/lodash-es/each.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./forEach.js","loc":"1:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","module":"./node_modules/lodash-es/each.js","moduleName":"./node_modules/lodash-es/each.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","resolvedModule":"./node_modules/lodash-es/each.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./forEach.js","loc":"1:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","module":"./node_modules/react-color/es/helpers/color.js","moduleName":"./node_modules/react-color/es/helpers/color.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"lodash-es/each","loc":"8:2-6","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3054,"sizes":{"javascript":3054},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","name":"./node_modules/react-color/es/helpers/interaction.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","index":345,"preOrderIndex":345,"index2":335,"postOrderIndex":335,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","issuerName":"./node_modules/react-color/es/components/common/Swatch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","name":"./node_modules/react-color/es/components/common/Swatch.js","profile":{"total":40,"resolving":5,"restoring":0,"building":34,"integration":0,"storing":1,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":8,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../helpers/interaction","loc":"5:0-56","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/interaction","loc":"70:15-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleFocus"],"providedExports":["handleFocus"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":390,"sizes":{"javascript":390},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","name":"./node_modules/lodash-es/_setToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","index":230,"preOrderIndex":230,"index2":236,"postOrderIndex":236,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","issuerName":"./node_modules/lodash-es/_baseRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":52,"resolving":13,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_setToString.js","loc":"3:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_setToString.js","loc":"14:9-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 12:0-44"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":991,"sizes":{"javascript":991},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","name":"./node_modules/lodash-es/isFunction.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","index":242,"preOrderIndex":242,"index2":228,"postOrderIndex":228,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isFunction.js","loc":"1:0-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isFunction.js","loc":"43:16-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isFunction.js","loc":"10:0-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isFunction.js","loc":"77:38-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","module":"./node_modules/lodash-es/isArrayLike.js","moduleName":"./node_modules/lodash-es/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","resolvedModule":"./node_modules/lodash-es/isArrayLike.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isFunction.js","loc":"1:0-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","module":"./node_modules/lodash-es/isArrayLike.js","moduleName":"./node_modules/lodash-es/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","resolvedModule":"./node_modules/lodash-es/isArrayLike.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isFunction.js","loc":"30:53-63","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":368,"sizes":{"javascript":368},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/identity.js","name":"./node_modules/lodash-es/identity.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/identity.js","index":248,"preOrderIndex":248,"index2":233,"postOrderIndex":233,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","issuerName":"./node_modules/lodash-es/_baseRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":48,"resolving":13,"restoring":0,"building":35,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./identity.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./identity.js","loc":"14:43-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./identity.js","loc":"3:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./identity.js","loc":"13:40-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","module":"./node_modules/lodash-es/_castFunction.js","moduleName":"./node_modules/lodash-es/_castFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","resolvedModule":"./node_modules/lodash-es/_castFunction.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./identity.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","module":"./node_modules/lodash-es/_castFunction.js","moduleName":"./node_modules/lodash-es/_castFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","resolvedModule":"./node_modules/lodash-es/_castFunction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./identity.js","loc":"11:46-54","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1094,"sizes":{"javascript":1094},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","name":"./node_modules/lodash-es/_overRest.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","index":250,"preOrderIndex":250,"index2":238,"postOrderIndex":238,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","issuerName":"./node_modules/lodash-es/_baseRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":48,"resolving":13,"restoring":0,"building":35,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_overRest.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_overRest.js","loc":"14:21-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-25"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":828,"sizes":{"javascript":828},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","name":"./node_modules/lodash-es/isArrayLike.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","index":253,"preOrderIndex":253,"index2":241,"postOrderIndex":241,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","issuerName":"./node_modules/lodash-es/keysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":47,"resolving":13,"restoring":0,"building":34,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","module":"./node_modules/lodash-es/_createBaseEach.js","moduleName":"./node_modules/lodash-es/_createBaseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","resolvedModule":"./node_modules/lodash-es/_createBaseEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLike.js","loc":"1:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","module":"./node_modules/lodash-es/_createBaseEach.js","moduleName":"./node_modules/lodash-es/_createBaseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","resolvedModule":"./node_modules/lodash-es/_createBaseEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLike.js","loc":"16:9-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLike.js","loc":"2:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLike.js","loc":"22:11-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","module":"./node_modules/lodash-es/isArrayLikeObject.js","moduleName":"./node_modules/lodash-es/isArrayLikeObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","resolvedModule":"./node_modules/lodash-es/isArrayLikeObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLike.js","loc":"1:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","module":"./node_modules/lodash-es/isArrayLikeObject.js","moduleName":"./node_modules/lodash-es/isArrayLikeObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","resolvedModule":"./node_modules/lodash-es/isArrayLikeObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLike.js","loc":"30:32-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLike.js","loc":"3:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLike.js","loc":"34:9-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLike.js","loc":"3:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLike.js","loc":"29:9-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":757,"sizes":{"javascript":757},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIndex.js","name":"./node_modules/lodash-es/_isIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIndex.js","index":255,"preOrderIndex":255,"index2":242,"postOrderIndex":242,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","issuerName":"./node_modules/lodash-es/_isIterateeCall.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","name":"./node_modules/lodash-es/_isIterateeCall.js","profile":{"total":30,"resolving":7,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":53,"resolving":13,"restoring":0,"building":40,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":13,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isIndex.js","loc":"5:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isIndex.js","loc":"41:11-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isIndex.js","loc":"3:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isIndex.js","loc":"22:34-41","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":797,"sizes":{"javascript":797},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/eq.js","name":"./node_modules/lodash-es/eq.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/eq.js","index":256,"preOrderIndex":256,"index2":243,"postOrderIndex":243,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","issuerName":"./node_modules/lodash-es/_assignMergeValue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":17,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","module":"./node_modules/lodash-es/_assignMergeValue.js","moduleName":"./node_modules/lodash-es/_assignMergeValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","resolvedModule":"./node_modules/lodash-es/_assignMergeValue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./eq.js","loc":"2:0-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","module":"./node_modules/lodash-es/_assignMergeValue.js","moduleName":"./node_modules/lodash-es/_assignMergeValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","resolvedModule":"./node_modules/lodash-es/_assignMergeValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./eq.js","loc":"14:31-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","module":"./node_modules/lodash-es/_assignValue.js","moduleName":"./node_modules/lodash-es/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","resolvedModule":"./node_modules/lodash-es/_assignValue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./eq.js","loc":"2:0-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","module":"./node_modules/lodash-es/_assignValue.js","moduleName":"./node_modules/lodash-es/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","resolvedModule":"./node_modules/lodash-es/_assignValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./eq.js","loc":"22:44-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","module":"./node_modules/lodash-es/_assocIndexOf.js","moduleName":"./node_modules/lodash-es/_assocIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","resolvedModule":"./node_modules/lodash-es/_assocIndexOf.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./eq.js","loc":"1:0-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","module":"./node_modules/lodash-es/_assocIndexOf.js","moduleName":"./node_modules/lodash-es/_assocIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","resolvedModule":"./node_modules/lodash-es/_assocIndexOf.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./eq.js","loc":"14:8-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./eq.js","loc":"1:0-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./eq.js","loc":"25:11-13","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":646,"sizes":{"javascript":646},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseFor.js","name":"./node_modules/lodash-es/_createBaseFor.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseFor.js","index":259,"preOrderIndex":259,"index2":246,"postOrderIndex":246,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","issuerName":"./node_modules/lodash-es/_baseFor.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","name":"./node_modules/lodash-es/_baseFor.js","profile":{"total":26,"resolving":5,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":5,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":48,"resolving":20,"restoring":0,"building":28,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","module":"./node_modules/lodash-es/_baseFor.js","moduleName":"./node_modules/lodash-es/_baseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","resolvedModule":"./node_modules/lodash-es/_baseFor.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_createBaseFor.js","loc":"1:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","module":"./node_modules/lodash-es/_baseFor.js","moduleName":"./node_modules/lodash-es/_baseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","resolvedModule":"./node_modules/lodash-es/_baseFor.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_createBaseFor.js","loc":"14:14-27","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":867,"sizes":{"javascript":867},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","index":261,"preOrderIndex":261,"index2":254,"postOrderIndex":254,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_ListCache.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_ListCache.js","loc":"16:33-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_ListCache.js","loc":"2:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_ListCache.js","loc":"16:23-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","module":"./node_modules/lodash-es/_stackClear.js","moduleName":"./node_modules/lodash-es/_stackClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","resolvedModule":"./node_modules/lodash-es/_stackClear.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_ListCache.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","module":"./node_modules/lodash-es/_stackClear.js","moduleName":"./node_modules/lodash-es/_stackClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","resolvedModule":"./node_modules/lodash-es/_stackClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_ListCache.js","loc":"11:22-31","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_ListCache.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_ListCache.js","loc":"20:22-31","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 26:0-43"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":252,"sizes":{"javascript":252},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","name":"./node_modules/lodash-es/_stackClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","index":268,"preOrderIndex":268,"index2":255,"postOrderIndex":255,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_stackClear.js","loc":"2:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_stackClear.js","loc":"21:24-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":403,"sizes":{"javascript":403},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackDelete.js","name":"./node_modules/lodash-es/_stackDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackDelete.js","index":269,"preOrderIndex":269,"index2":256,"postOrderIndex":256,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":21,"resolving":12,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_stackDelete.js","loc":"3:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_stackDelete.js","loc":"22:28-39","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":269,"sizes":{"javascript":269},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackGet.js","name":"./node_modules/lodash-es/_stackGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackGet.js","index":270,"preOrderIndex":270,"index2":257,"postOrderIndex":257,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":22,"resolving":12,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_stackGet.js","loc":"4:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_stackGet.js","loc":"23:22-30","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":321,"sizes":{"javascript":321},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackHas.js","name":"./node_modules/lodash-es/_stackHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackHas.js","index":271,"preOrderIndex":271,"index2":258,"postOrderIndex":258,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":26,"resolving":17,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_stackHas.js","loc":"5:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_stackHas.js","loc":"24:22-30","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":851,"sizes":{"javascript":851},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","index":272,"preOrderIndex":272,"index2":275,"postOrderIndex":275,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_stackSet.js","loc":"6:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_stackSet.js","loc":"25:22-30","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":623,"sizes":{"javascript":623},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","index":292,"preOrderIndex":292,"index2":278,"postOrderIndex":278,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","issuerName":"./node_modules/lodash-es/_assignMergeValue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","module":"./node_modules/lodash-es/_assignMergeValue.js","moduleName":"./node_modules/lodash-es/_assignMergeValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","resolvedModule":"./node_modules/lodash-es/_assignMergeValue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"1:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","module":"./node_modules/lodash-es/_assignMergeValue.js","moduleName":"./node_modules/lodash-es/_assignMergeValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","resolvedModule":"./node_modules/lodash-es/_assignMergeValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"16:4-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","module":"./node_modules/lodash-es/_assignValue.js","moduleName":"./node_modules/lodash-es/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","resolvedModule":"./node_modules/lodash-es/_assignValue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"1:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","module":"./node_modules/lodash-es/_assignValue.js","moduleName":"./node_modules/lodash-es/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","resolvedModule":"./node_modules/lodash-es/_assignValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"24:4-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","module":"./node_modules/lodash-es/_copyObject.js","moduleName":"./node_modules/lodash-es/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","resolvedModule":"./node_modules/lodash-es/_copyObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"2:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","module":"./node_modules/lodash-es/_copyObject.js","moduleName":"./node_modules/lodash-es/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","resolvedModule":"./node_modules/lodash-es/_copyObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"32:6-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":486,"sizes":{"javascript":486},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArray.js","name":"./node_modules/lodash-es/isArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArray.js","index":293,"preOrderIndex":293,"index2":280,"postOrderIndex":280,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":13,"restoring":0,"building":30,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":13,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArray.js","loc":"3:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArray.js","loc":"23:14-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArray.js","loc":"7:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArray.js","loc":"48:16-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArray.js","loc":"54:10-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArray.js","loc":"4:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArray.js","loc":"37:13-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 24:0-28"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1112,"sizes":{"javascript":1112},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","name":"./node_modules/lodash-es/isBuffer.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","index":294,"preOrderIndex":294,"index2":282,"postOrderIndex":282,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":13,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isBuffer.js","loc":"4:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isBuffer.js","loc":"25:35-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isBuffer.js","loc":"9:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isBuffer.js","loc":"49:27-35","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 5:0-88"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":693,"sizes":{"javascript":693},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","name":"./node_modules/lodash-es/isTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","index":296,"preOrderIndex":296,"index2":287,"postOrderIndex":287,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":45,"resolving":13,"restoring":0,"building":32,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":13,"dependencies":3},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isTypedArray.js","loc":"6:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isTypedArray.js","loc":"26:46-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isTypedArray.js","loc":"13:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isTypedArray.js","loc":"50:39-51","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 6:0-57"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":740,"sizes":{"javascript":740},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","name":"./node_modules/lodash-es/isArrayLikeObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","index":301,"preOrderIndex":301,"index2":288,"postOrderIndex":288,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":13,"restoring":0,"building":30,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLikeObject.js","loc":"8:0-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLikeObject.js","loc":"57:15-32","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":452,"sizes":{"javascript":452},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyArray.js","name":"./node_modules/lodash-es/_copyArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyArray.js","index":302,"preOrderIndex":302,"index2":289,"postOrderIndex":289,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_copyArray.js","loc":"4:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_copyArray.js","loc":"58:19-28","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1054,"sizes":{"javascript":1054},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","name":"./node_modules/lodash-es/_cloneBuffer.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","index":303,"preOrderIndex":303,"index2":290,"postOrderIndex":290,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":12,"restoring":0,"building":28,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_cloneBuffer.js","loc":"2:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_cloneBuffer.js","loc":"62:19-30","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-88"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":525,"sizes":{"javascript":525},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","name":"./node_modules/lodash-es/_cloneTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","index":304,"preOrderIndex":304,"index2":293,"postOrderIndex":293,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":12,"restoring":0,"building":28,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_cloneTypedArray.js","loc":"3:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_cloneTypedArray.js","loc":"66:19-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1648,"sizes":{"javascript":1648},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","name":"./node_modules/lodash-es/isPlainObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","index":307,"preOrderIndex":307,"index2":296,"postOrderIndex":296,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":45,"resolving":13,"restoring":0,"building":32,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isPlainObject.js","loc":"12:0-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isPlainObject.js","loc":"72:13-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 9:0-10:35"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1024,"sizes":{"javascript":1024},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","name":"./node_modules/lodash-es/isArguments.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","index":310,"preOrderIndex":310,"index2":298,"postOrderIndex":298,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":42,"resolving":12,"restoring":0,"building":30,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":12,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArguments.js","loc":"2:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArguments.js","loc":"24:24-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArguments.js","loc":"6:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArguments.js","loc":"72:40-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArguments.js","loc":"74:10-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 5:0-35"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":742,"sizes":{"javascript":742},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","name":"./node_modules/lodash-es/toPlainObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","index":312,"preOrderIndex":312,"index2":307,"postOrderIndex":307,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./toPlainObject.js","loc":"15:0-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./toPlainObject.js","loc":"75:19-32","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1776,"sizes":{"javascript":1776},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","name":"./node_modules/lodash-es/_arrayLikeKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","index":316,"preOrderIndex":316,"index2":302,"postOrderIndex":302,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","issuerName":"./node_modules/lodash-es/keysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":46,"resolving":13,"restoring":0,"building":33,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_arrayLikeKeys.js","loc":"1:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_arrayLikeKeys.js","loc":"34:31-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_arrayLikeKeys.js","loc":"1:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_arrayLikeKeys.js","loc":"29:31-44","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 9:0-35"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":868,"sizes":{"javascript":868},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","name":"./node_modules/lodash-es/_baseKeysIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","index":318,"preOrderIndex":318,"index2":305,"postOrderIndex":305,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","issuerName":"./node_modules/lodash-es/keysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":47,"resolving":13,"restoring":0,"building":34,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseKeysIn.js","loc":"2:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseKeysIn.js","loc":"29:61-71","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 6:0-35"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":484,"sizes":{"javascript":484},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","name":"./node_modules/lodash-es/_initCloneObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","index":321,"preOrderIndex":321,"index2":309,"postOrderIndex":309,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_initCloneObject.js","loc":"5:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_initCloneObject.js","loc":"78:19-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1517,"sizes":{"javascript":1517},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","name":"./node_modules/lodash-es/toNumber.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","index":327,"preOrderIndex":327,"index2":318,"postOrderIndex":318,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","issuerName":"./node_modules/lodash-es/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":33,"resolving":9,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./toNumber.js","loc":"3:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./toNumber.js","loc":"81:9-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./toNumber.js","loc":"85:33-41","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 18:0-28"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":518,"sizes":{"javascript":518},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","name":"./node_modules/lodash-es/now.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","index":331,"preOrderIndex":331,"index2":319,"postOrderIndex":319,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","issuerName":"./node_modules/lodash-es/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":34,"resolving":10,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./now.js","loc":"2:0-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./now.js","loc":"130:15-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./now.js","loc":"159:57-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./now.js","loc":"163:15-18","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":535,"sizes":{"javascript":535},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayEach.js","name":"./node_modules/lodash-es/_arrayEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayEach.js","index":336,"preOrderIndex":336,"index2":324,"postOrderIndex":324,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","issuerName":"./node_modules/lodash-es/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":44,"resolving":6,"restoring":0,"building":38,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_arrayEach.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_arrayEach.js","loc":"37:35-44","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":453,"sizes":{"javascript":453},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","index":337,"preOrderIndex":337,"index2":330,"postOrderIndex":330,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","issuerName":"./node_modules/lodash-es/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseEach.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseEach.js","loc":"37:47-55","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 12:0-42"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":324,"sizes":{"javascript":324},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","name":"./node_modules/lodash-es/_castFunction.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","index":343,"preOrderIndex":343,"index2":331,"postOrderIndex":331,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","issuerName":"./node_modules/lodash-es/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_castFunction.js","loc":"3:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_castFunction.js","loc":"38:26-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":939,"sizes":{"javascript":939},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_shortOut.js","name":"./node_modules/lodash-es/_shortOut.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_shortOut.js","index":231,"preOrderIndex":231,"index2":217,"postOrderIndex":217,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","issuerName":"./node_modules/lodash-es/_setToString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","name":"./node_modules/lodash-es/_setToString.js","profile":{"total":52,"resolving":13,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":6,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","module":"./node_modules/lodash-es/_setToString.js","moduleName":"./node_modules/lodash-es/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","resolvedModule":"./node_modules/lodash-es/_setToString.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_shortOut.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","module":"./node_modules/lodash-es/_setToString.js","moduleName":"./node_modules/lodash-es/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","resolvedModule":"./node_modules/lodash-es/_setToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_shortOut.js","loc":"12:18-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 6:0-25"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":639,"sizes":{"javascript":639},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","name":"./node_modules/lodash-es/_baseSetToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","index":232,"preOrderIndex":232,"index2":235,"postOrderIndex":235,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","issuerName":"./node_modules/lodash-es/_setToString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","name":"./node_modules/lodash-es/_setToString.js","profile":{"total":52,"resolving":13,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":6,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","module":"./node_modules/lodash-es/_setToString.js","moduleName":"./node_modules/lodash-es/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","resolvedModule":"./node_modules/lodash-es/_setToString.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseSetToString.js","loc":"1:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","module":"./node_modules/lodash-es/_setToString.js","moduleName":"./node_modules/lodash-es/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","resolvedModule":"./node_modules/lodash-es/_setToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseSetToString.js","loc":"12:27-42","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 13:0-20:2"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":231,"sizes":{"javascript":231},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","index":233,"preOrderIndex":233,"index2":232,"postOrderIndex":232,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","issuerName":"./node_modules/lodash-es/_baseAssignValue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","module":"./node_modules/lodash-es/_baseAssignValue.js","moduleName":"./node_modules/lodash-es/_baseAssignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","resolvedModule":"./node_modules/lodash-es/_baseAssignValue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_defineProperty.js","loc":"1:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","module":"./node_modules/lodash-es/_baseAssignValue.js","moduleName":"./node_modules/lodash-es/_baseAssignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","resolvedModule":"./node_modules/lodash-es/_baseAssignValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_defineProperty.js","loc":"13:28-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","module":"./node_modules/lodash-es/_baseAssignValue.js","moduleName":"./node_modules/lodash-es/_baseAssignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","resolvedModule":"./node_modules/lodash-es/_baseAssignValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_defineProperty.js","loc":"14:4-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_defineProperty.js","loc":"2:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_defineProperty.js","loc":"13:23-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_defineProperty.js","loc":"14:9-23","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 3:0-9:5"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":298,"sizes":{"javascript":298},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","name":"./node_modules/lodash-es/_root.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","index":240,"preOrderIndex":240,"index2":221,"postOrderIndex":221,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","issuerName":"./node_modules/lodash-es/now.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","name":"./node_modules/lodash-es/now.js","profile":{"total":34,"resolving":10,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","module":"./node_modules/lodash-es/_Map.js","moduleName":"./node_modules/lodash-es/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","resolvedModule":"./node_modules/lodash-es/_Map.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"2:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","module":"./node_modules/lodash-es/_Map.js","moduleName":"./node_modules/lodash-es/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","resolvedModule":"./node_modules/lodash-es/_Map.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"5:20-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","module":"./node_modules/lodash-es/_Symbol.js","moduleName":"./node_modules/lodash-es/_Symbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","resolvedModule":"./node_modules/lodash-es/_Symbol.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","module":"./node_modules/lodash-es/_Symbol.js","moduleName":"./node_modules/lodash-es/_Symbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","resolvedModule":"./node_modules/lodash-es/_Symbol.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"4:13-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","module":"./node_modules/lodash-es/_Uint8Array.js","moduleName":"./node_modules/lodash-es/_Uint8Array.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","resolvedModule":"./node_modules/lodash-es/_Uint8Array.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","module":"./node_modules/lodash-es/_Uint8Array.js","moduleName":"./node_modules/lodash-es/_Uint8Array.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","resolvedModule":"./node_modules/lodash-es/_Uint8Array.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"4:17-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","module":"./node_modules/lodash-es/_cloneBuffer.js","moduleName":"./node_modules/lodash-es/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","resolvedModule":"./node_modules/lodash-es/_cloneBuffer.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","module":"./node_modules/lodash-es/_cloneBuffer.js","moduleName":"./node_modules/lodash-es/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","resolvedModule":"./node_modules/lodash-es/_cloneBuffer.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"13:29-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","module":"./node_modules/lodash-es/_coreJsData.js","moduleName":"./node_modules/lodash-es/_coreJsData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","resolvedModule":"./node_modules/lodash-es/_coreJsData.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","module":"./node_modules/lodash-es/_coreJsData.js","moduleName":"./node_modules/lodash-es/_coreJsData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","resolvedModule":"./node_modules/lodash-es/_coreJsData.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"4:17-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","module":"./node_modules/lodash-es/isBuffer.js","moduleName":"./node_modules/lodash-es/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","resolvedModule":"./node_modules/lodash-es/isBuffer.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","module":"./node_modules/lodash-es/isBuffer.js","moduleName":"./node_modules/lodash-es/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","resolvedModule":"./node_modules/lodash-es/isBuffer.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"14:29-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","module":"./node_modules/lodash-es/now.js","moduleName":"./node_modules/lodash-es/now.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","resolvedModule":"./node_modules/lodash-es/now.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","module":"./node_modules/lodash-es/now.js","moduleName":"./node_modules/lodash-es/now.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","resolvedModule":"./node_modules/lodash-es/now.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"20:9-22","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-81"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":790,"sizes":{"javascript":790},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","name":"./node_modules/lodash-es/_baseGetTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","index":243,"preOrderIndex":243,"index2":227,"postOrderIndex":227,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","issuerName":"./node_modules/lodash-es/isFunction.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","name":"./node_modules/lodash-es/isFunction.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":22,"resolving":10,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","module":"./node_modules/lodash-es/_baseIsArguments.js","moduleName":"./node_modules/lodash-es/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","resolvedModule":"./node_modules/lodash-es/_baseIsArguments.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseGetTag.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","module":"./node_modules/lodash-es/_baseIsArguments.js","moduleName":"./node_modules/lodash-es/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","resolvedModule":"./node_modules/lodash-es/_baseIsArguments.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseGetTag.js","loc":"15:32-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseGetTag.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseGetTag.js","loc":"57:47-57","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","module":"./node_modules/lodash-es/isFunction.js","moduleName":"./node_modules/lodash-es/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","resolvedModule":"./node_modules/lodash-es/isFunction.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseGetTag.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","module":"./node_modules/lodash-es/isFunction.js","moduleName":"./node_modules/lodash-es/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","resolvedModule":"./node_modules/lodash-es/isFunction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseGetTag.js","loc":"33:12-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseGetTag.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseGetTag.js","loc":"50:30-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","module":"./node_modules/lodash-es/isSymbol.js","moduleName":"./node_modules/lodash-es/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","resolvedModule":"./node_modules/lodash-es/isSymbol.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseGetTag.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","module":"./node_modules/lodash-es/isSymbol.js","moduleName":"./node_modules/lodash-es/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","resolvedModule":"./node_modules/lodash-es/isSymbol.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseGetTag.js","loc":"26:28-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 10:0-61"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":712,"sizes":{"javascript":712},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_apply.js","name":"./node_modules/lodash-es/_apply.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_apply.js","index":251,"preOrderIndex":251,"index2":237,"postOrderIndex":237,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","issuerName":"./node_modules/lodash-es/_overRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","name":"./node_modules/lodash-es/_overRest.js","profile":{"total":48,"resolving":13,"restoring":0,"building":35,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":33,"resolving":9,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","module":"./node_modules/lodash-es/_overRest.js","moduleName":"./node_modules/lodash-es/_overRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","resolvedModule":"./node_modules/lodash-es/_overRest.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_apply.js","loc":"1:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","module":"./node_modules/lodash-es/_overRest.js","moduleName":"./node_modules/lodash-es/_overRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","resolvedModule":"./node_modules/lodash-es/_overRest.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_apply.js","loc":"32:11-16","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":800,"sizes":{"javascript":800},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isLength.js","name":"./node_modules/lodash-es/isLength.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isLength.js","index":254,"preOrderIndex":254,"index2":240,"postOrderIndex":240,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","issuerName":"./node_modules/lodash-es/isArrayLike.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","name":"./node_modules/lodash-es/isArrayLike.js","profile":{"total":47,"resolving":13,"restoring":0,"building":34,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":10,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isLength.js","loc":"2:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isLength.js","loc":"57:4-12","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","module":"./node_modules/lodash-es/isArrayLike.js","moduleName":"./node_modules/lodash-es/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","resolvedModule":"./node_modules/lodash-es/isArrayLike.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isLength.js","loc":"2:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","module":"./node_modules/lodash-es/isArrayLike.js","moduleName":"./node_modules/lodash-es/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","resolvedModule":"./node_modules/lodash-es/isArrayLike.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isLength.js","loc":"30:26-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":216,"sizes":{"javascript":216},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheClear.js","name":"./node_modules/lodash-es/_listCacheClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheClear.js","index":262,"preOrderIndex":262,"index2":248,"postOrderIndex":248,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","issuerName":"./node_modules/lodash-es/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":33,"restoring":0,"building":7,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":33,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_listCacheClear.js","loc":"1:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_listCacheClear.js","loc":"26:28-42","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":773,"sizes":{"javascript":773},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","name":"./node_modules/lodash-es/_listCacheDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","index":263,"preOrderIndex":263,"index2":250,"postOrderIndex":250,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","issuerName":"./node_modules/lodash-es/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":33,"restoring":0,"building":7,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":33,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_listCacheDelete.js","loc":"2:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_listCacheDelete.js","loc":"27:32-47","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-33"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":418,"sizes":{"javascript":418},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","name":"./node_modules/lodash-es/_listCacheGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","index":265,"preOrderIndex":265,"index2":251,"postOrderIndex":251,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","issuerName":"./node_modules/lodash-es/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":38,"resolving":31,"restoring":0,"building":7,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":31,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_listCacheGet.js","loc":"3:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_listCacheGet.js","loc":"28:26-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":401,"sizes":{"javascript":401},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","name":"./node_modules/lodash-es/_listCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","index":266,"preOrderIndex":266,"index2":252,"postOrderIndex":252,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","issuerName":"./node_modules/lodash-es/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":39,"resolving":31,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":31,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_listCacheHas.js","loc":"4:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_listCacheHas.js","loc":"29:26-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":551,"sizes":{"javascript":551},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","name":"./node_modules/lodash-es/_listCacheSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","index":267,"preOrderIndex":267,"index2":253,"postOrderIndex":253,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","issuerName":"./node_modules/lodash-es/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":39,"resolving":31,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":31,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_listCacheSet.js","loc":"5:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_listCacheSet.js","loc":"30:26-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":193,"sizes":{"javascript":193},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","name":"./node_modules/lodash-es/_Map.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","index":273,"preOrderIndex":273,"index2":259,"postOrderIndex":259,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","issuerName":"./node_modules/lodash-es/_stackSet.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":32,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Map.js","loc":"3:0-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Map.js","loc":"16:16-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Map.js","loc":"2:0-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Map.js","loc":"22:9-12","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 5:0-33"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":867,"sizes":{"javascript":867},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","index":274,"preOrderIndex":274,"index2":274,"postOrderIndex":274,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","issuerName":"./node_modules/lodash-es/_stackSet.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_MapCache.js","loc":"3:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_MapCache.js","loc":"27:31-39","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 26:0-41"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":278,"sizes":{"javascript":278},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/stubFalse.js","name":"./node_modules/lodash-es/stubFalse.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/stubFalse.js","index":295,"preOrderIndex":295,"index2":281,"postOrderIndex":281,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","issuerName":"./node_modules/lodash-es/isBuffer.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","name":"./node_modules/lodash-es/isBuffer.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":13,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":25,"resolving":10,"restoring":0,"building":15,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","module":"./node_modules/lodash-es/isBuffer.js","moduleName":"./node_modules/lodash-es/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","resolvedModule":"./node_modules/lodash-es/isBuffer.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./stubFalse.js","loc":"2:0-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","module":"./node_modules/lodash-es/isBuffer.js","moduleName":"./node_modules/lodash-es/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","resolvedModule":"./node_modules/lodash-es/isBuffer.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./stubFalse.js","loc":"36:33-42","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":993,"sizes":{"javascript":993},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","name":"./node_modules/lodash-es/_nodeUtil.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","index":297,"preOrderIndex":297,"index2":283,"postOrderIndex":283,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","issuerName":"./node_modules/lodash-es/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","name":"./node_modules/lodash-es/isTypedArray.js","profile":{"total":45,"resolving":13,"restoring":0,"building":32,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":13,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":10,"restoring":0,"building":19,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nodeUtil.js","loc":"3:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nodeUtil.js","loc":"6:23-31","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nodeUtil.js","loc":"6:35-56","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-88"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":330,"sizes":{"javascript":330},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseUnary.js","name":"./node_modules/lodash-es/_baseUnary.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseUnary.js","index":298,"preOrderIndex":298,"index2":284,"postOrderIndex":284,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","issuerName":"./node_modules/lodash-es/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","name":"./node_modules/lodash-es/isTypedArray.js","profile":{"total":45,"resolving":13,"restoring":0,"building":32,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":13,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":24,"resolving":10,"restoring":0,"building":14,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseUnary.js","loc":"2:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseUnary.js","loc":"25:38-47","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":2220,"sizes":{"javascript":2220},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","name":"./node_modules/lodash-es/_baseIsTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","index":299,"preOrderIndex":299,"index2":286,"postOrderIndex":286,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","issuerName":"./node_modules/lodash-es/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","name":"./node_modules/lodash-es/isTypedArray.js","profile":{"total":45,"resolving":13,"restoring":0,"building":32,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":13,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":25,"resolving":10,"restoring":0,"building":15,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseIsTypedArray.js","loc":"1:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseIsTypedArray.js","loc":"25:68-84","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 33:0-24"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":612,"sizes":{"javascript":612},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isObjectLike.js","name":"./node_modules/lodash-es/isObjectLike.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isObjectLike.js","index":300,"preOrderIndex":300,"index2":285,"postOrderIndex":285,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","issuerName":"./node_modules/lodash-es/isArrayLikeObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","name":"./node_modules/lodash-es/isArrayLikeObject.js","profile":{"total":43,"resolving":13,"restoring":0,"building":30,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":10,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","module":"./node_modules/lodash-es/_baseIsArguments.js","moduleName":"./node_modules/lodash-es/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","resolvedModule":"./node_modules/lodash-es/_baseIsArguments.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"2:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","module":"./node_modules/lodash-es/_baseIsArguments.js","moduleName":"./node_modules/lodash-es/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","resolvedModule":"./node_modules/lodash-es/_baseIsArguments.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"15:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"3:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"56:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","module":"./node_modules/lodash-es/isArguments.js","moduleName":"./node_modules/lodash-es/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","resolvedModule":"./node_modules/lodash-es/isArguments.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"2:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","module":"./node_modules/lodash-es/isArguments.js","moduleName":"./node_modules/lodash-es/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","resolvedModule":"./node_modules/lodash-es/isArguments.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"32:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","module":"./node_modules/lodash-es/isArrayLikeObject.js","moduleName":"./node_modules/lodash-es/isArrayLikeObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","resolvedModule":"./node_modules/lodash-es/isArrayLikeObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"2:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","module":"./node_modules/lodash-es/isArrayLikeObject.js","moduleName":"./node_modules/lodash-es/isArrayLikeObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","resolvedModule":"./node_modules/lodash-es/isArrayLikeObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"30:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"3:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"50:7-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","module":"./node_modules/lodash-es/isSymbol.js","moduleName":"./node_modules/lodash-es/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","resolvedModule":"./node_modules/lodash-es/isSymbol.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"2:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","module":"./node_modules/lodash-es/isSymbol.js","moduleName":"./node_modules/lodash-es/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","resolvedModule":"./node_modules/lodash-es/isSymbol.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"26:5-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":447,"sizes":{"javascript":447},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","name":"./node_modules/lodash-es/_cloneArrayBuffer.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","index":305,"preOrderIndex":305,"index2":292,"postOrderIndex":292,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","issuerName":"./node_modules/lodash-es/_cloneTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","name":"./node_modules/lodash-es/_cloneTypedArray.js","profile":{"total":40,"resolving":12,"restoring":0,"building":28,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":23,"resolving":9,"restoring":0,"building":14,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","module":"./node_modules/lodash-es/_cloneTypedArray.js","moduleName":"./node_modules/lodash-es/_cloneTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","resolvedModule":"./node_modules/lodash-es/_cloneTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_cloneArrayBuffer.js","loc":"1:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","module":"./node_modules/lodash-es/_cloneTypedArray.js","moduleName":"./node_modules/lodash-es/_cloneTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","resolvedModule":"./node_modules/lodash-es/_cloneTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_cloneArrayBuffer.js","loc":"12:24-40","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":161,"sizes":{"javascript":161},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","name":"./node_modules/lodash-es/_getPrototype.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","index":308,"preOrderIndex":308,"index2":295,"postOrderIndex":295,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","issuerName":"./node_modules/lodash-es/_initCloneObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","name":"./node_modules/lodash-es/_initCloneObject.js","profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":9,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":9,"dependencies":9},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getPrototype.js","loc":"2:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getPrototype.js","loc":"14:17-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getPrototype.js","loc":"2:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getPrototype.js","loc":"53:14-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-58"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":486,"sizes":{"javascript":486},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","name":"./node_modules/lodash-es/_baseIsArguments.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","index":311,"preOrderIndex":311,"index2":297,"postOrderIndex":297,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","issuerName":"./node_modules/lodash-es/isArguments.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","name":"./node_modules/lodash-es/isArguments.js","profile":{"total":42,"resolving":12,"restoring":0,"building":30,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":12,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":10,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","module":"./node_modules/lodash-es/isArguments.js","moduleName":"./node_modules/lodash-es/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","resolvedModule":"./node_modules/lodash-es/isArguments.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseIsArguments.js","loc":"1:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","module":"./node_modules/lodash-es/isArguments.js","moduleName":"./node_modules/lodash-es/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","resolvedModule":"./node_modules/lodash-es/isArguments.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseIsArguments.js","loc":"31:18-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","module":"./node_modules/lodash-es/isArguments.js","moduleName":"./node_modules/lodash-es/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","resolvedModule":"./node_modules/lodash-es/isArguments.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseIsArguments.js","loc":"31:72-87","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1042,"sizes":{"javascript":1042},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","name":"./node_modules/lodash-es/_copyObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","index":313,"preOrderIndex":313,"index2":300,"postOrderIndex":300,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","issuerName":"./node_modules/lodash-es/toPlainObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","name":"./node_modules/lodash-es/toPlainObject.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":23,"resolving":10,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","module":"./node_modules/lodash-es/toPlainObject.js","moduleName":"./node_modules/lodash-es/toPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","resolvedModule":"./node_modules/lodash-es/toPlainObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_copyObject.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","module":"./node_modules/lodash-es/toPlainObject.js","moduleName":"./node_modules/lodash-es/toPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","resolvedModule":"./node_modules/lodash-es/toPlainObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_copyObject.js","loc":"29:9-19","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":502,"sizes":{"javascript":502},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTimes.js","name":"./node_modules/lodash-es/_baseTimes.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTimes.js","index":317,"preOrderIndex":317,"index2":301,"postOrderIndex":301,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","issuerName":"./node_modules/lodash-es/_arrayLikeKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","name":"./node_modules/lodash-es/_arrayLikeKeys.js","profile":{"total":46,"resolving":13,"restoring":0,"building":33,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":26,"resolving":10,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseTimes.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseTimes.js","loc":"28:29-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":488,"sizes":{"javascript":488},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeysIn.js","name":"./node_modules/lodash-es/_nativeKeysIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeysIn.js","index":319,"preOrderIndex":319,"index2":303,"postOrderIndex":303,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","issuerName":"./node_modules/lodash-es/_baseKeysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","name":"./node_modules/lodash-es/_baseKeysIn.js","profile":{"total":47,"resolving":13,"restoring":0,"building":34,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":31,"resolving":10,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeKeysIn.js","loc":"3:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeKeysIn.js","loc":"20:11-23","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":478,"sizes":{"javascript":478},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isPrototype.js","name":"./node_modules/lodash-es/_isPrototype.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isPrototype.js","index":320,"preOrderIndex":320,"index2":304,"postOrderIndex":304,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","issuerName":"./node_modules/lodash-es/_initCloneObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","name":"./node_modules/lodash-es/_initCloneObject.js","profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":19,"resolving":9,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","module":"./node_modules/lodash-es/_baseKeys.js","moduleName":"./node_modules/lodash-es/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","resolvedModule":"./node_modules/lodash-es/_baseKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isPrototype.js","loc":"1:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","module":"./node_modules/lodash-es/_baseKeys.js","moduleName":"./node_modules/lodash-es/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","resolvedModule":"./node_modules/lodash-es/_baseKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isPrototype.js","loc":"18:7-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isPrototype.js","loc":"2:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isPrototype.js","loc":"22:16-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isPrototype.js","loc":"3:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isPrototype.js","loc":"13:54-65","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 2:0-35"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":684,"sizes":{"javascript":684},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","name":"./node_modules/lodash-es/_baseCreate.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","index":322,"preOrderIndex":322,"index2":308,"postOrderIndex":308,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","issuerName":"./node_modules/lodash-es/_initCloneObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","name":"./node_modules/lodash-es/_initCloneObject.js","profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":9,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseCreate.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseCreate.js","loc":"14:6-16","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-33"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":680,"sizes":{"javascript":680},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","name":"./node_modules/lodash-es/isSymbol.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","index":328,"preOrderIndex":328,"index2":315,"postOrderIndex":315,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","issuerName":"./node_modules/lodash-es/toNumber.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","name":"./node_modules/lodash-es/toNumber.js","profile":{"total":33,"resolving":9,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isSymbol.js","loc":"3:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isSymbol.js","loc":"47:6-14","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":442,"sizes":{"javascript":442},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","name":"./node_modules/lodash-es/_baseTrim.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","index":329,"preOrderIndex":329,"index2":317,"postOrderIndex":317,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","issuerName":"./node_modules/lodash-es/toNumber.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","name":"./node_modules/lodash-es/toNumber.js","profile":{"total":33,"resolving":9,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseTrim.js","loc":"1:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseTrim.js","loc":"57:10-18","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":884,"sizes":{"javascript":884},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","name":"./node_modules/lodash-es/_createBaseEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","index":338,"preOrderIndex":338,"index2":325,"postOrderIndex":325,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","issuerName":"./node_modules/lodash-es/_baseEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","module":"./node_modules/lodash-es/_baseEach.js","moduleName":"./node_modules/lodash-es/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","resolvedModule":"./node_modules/lodash-es/_baseEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_createBaseEach.js","loc":"2:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","module":"./node_modules/lodash-es/_baseEach.js","moduleName":"./node_modules/lodash-es/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","resolvedModule":"./node_modules/lodash-es/_baseEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_createBaseEach.js","loc":"12:15-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":454,"sizes":{"javascript":454},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","name":"./node_modules/lodash-es/_baseForOwn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","index":339,"preOrderIndex":339,"index2":329,"postOrderIndex":329,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","issuerName":"./node_modules/lodash-es/_baseEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","module":"./node_modules/lodash-es/_baseEach.js","moduleName":"./node_modules/lodash-es/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","resolvedModule":"./node_modules/lodash-es/_baseEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseForOwn.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","module":"./node_modules/lodash-es/_baseEach.js","moduleName":"./node_modules/lodash-es/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","resolvedModule":"./node_modules/lodash-es/_baseEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseForOwn.js","loc":"12:30-40","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":481,"sizes":{"javascript":481},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","index":234,"preOrderIndex":234,"index2":231,"postOrderIndex":231,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","issuerName":"./node_modules/lodash-es/_defineProperty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","module":"./node_modules/lodash-es/_Map.js","moduleName":"./node_modules/lodash-es/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","resolvedModule":"./node_modules/lodash-es/_Map.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getNative.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","module":"./node_modules/lodash-es/_Map.js","moduleName":"./node_modules/lodash-es/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","resolvedModule":"./node_modules/lodash-es/_Map.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getNative.js","loc":"5:10-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","module":"./node_modules/lodash-es/_defineProperty.js","moduleName":"./node_modules/lodash-es/_defineProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","resolvedModule":"./node_modules/lodash-es/_defineProperty.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getNative.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","module":"./node_modules/lodash-es/_defineProperty.js","moduleName":"./node_modules/lodash-es/_defineProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","resolvedModule":"./node_modules/lodash-es/_defineProperty.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getNative.js","loc":"5:15-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","module":"./node_modules/lodash-es/_nativeCreate.js","moduleName":"./node_modules/lodash-es/_nativeCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","resolvedModule":"./node_modules/lodash-es/_nativeCreate.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getNative.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","module":"./node_modules/lodash-es/_nativeCreate.js","moduleName":"./node_modules/lodash-es/_nativeCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","resolvedModule":"./node_modules/lodash-es/_nativeCreate.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getNative.js","loc":"4:19-28","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":171,"sizes":{"javascript":171},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_freeGlobal.js","name":"./node_modules/lodash-es/_freeGlobal.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_freeGlobal.js","index":241,"preOrderIndex":241,"index2":220,"postOrderIndex":220,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","issuerName":"./node_modules/lodash-es/_root.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","name":"./node_modules/lodash-es/now.js","profile":{"total":34,"resolving":10,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","name":"./node_modules/lodash-es/_root.js","profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":5,"restoring":0,"building":25,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":5,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","module":"./node_modules/lodash-es/_nodeUtil.js","moduleName":"./node_modules/lodash-es/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","resolvedModule":"./node_modules/lodash-es/_nodeUtil.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_freeGlobal.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","module":"./node_modules/lodash-es/_nodeUtil.js","moduleName":"./node_modules/lodash-es/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","resolvedModule":"./node_modules/lodash-es/_nodeUtil.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_freeGlobal.js","loc":"13:35-53","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","module":"./node_modules/lodash-es/_root.js","moduleName":"./node_modules/lodash-es/_root.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","resolvedModule":"./node_modules/lodash-es/_root.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_freeGlobal.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","module":"./node_modules/lodash-es/_root.js","moduleName":"./node_modules/lodash-es/_root.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","resolvedModule":"./node_modules/lodash-es/_root.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_freeGlobal.js","loc":"7:11-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 2:0-91"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":116,"sizes":{"javascript":116},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","name":"./node_modules/lodash-es/_Symbol.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","index":244,"preOrderIndex":244,"index2":224,"postOrderIndex":224,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","issuerName":"./node_modules/lodash-es/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","name":"./node_modules/lodash-es/isFunction.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","name":"./node_modules/lodash-es/_baseGetTag.js","profile":{"total":22,"resolving":10,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":17,"resolving":6,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":6,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Symbol.js","loc":"1:0-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Symbol.js","loc":"10:21-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Symbol.js","loc":"10:30-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","module":"./node_modules/lodash-es/_getRawTag.js","moduleName":"./node_modules/lodash-es/_getRawTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","resolvedModule":"./node_modules/lodash-es/_getRawTag.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Symbol.js","loc":"1:0-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","module":"./node_modules/lodash-es/_getRawTag.js","moduleName":"./node_modules/lodash-es/_getRawTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","resolvedModule":"./node_modules/lodash-es/_getRawTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Symbol.js","loc":"17:21-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","module":"./node_modules/lodash-es/_getRawTag.js","moduleName":"./node_modules/lodash-es/_getRawTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","resolvedModule":"./node_modules/lodash-es/_getRawTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Symbol.js","loc":"17:30-48","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-25"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1137,"sizes":{"javascript":1137},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","name":"./node_modules/lodash-es/_getRawTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","index":245,"preOrderIndex":245,"index2":225,"postOrderIndex":225,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","issuerName":"./node_modules/lodash-es/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","name":"./node_modules/lodash-es/isFunction.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","name":"./node_modules/lodash-es/_baseGetTag.js","profile":{"total":22,"resolving":10,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":6,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getRawTag.js","loc":"2:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getRawTag.js","loc":"24:6-15","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-35"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":563,"sizes":{"javascript":563},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_objectToString.js","name":"./node_modules/lodash-es/_objectToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_objectToString.js","index":246,"preOrderIndex":246,"index2":226,"postOrderIndex":226,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","issuerName":"./node_modules/lodash-es/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","name":"./node_modules/lodash-es/isFunction.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","name":"./node_modules/lodash-es/_baseGetTag.js","profile":{"total":22,"resolving":10,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_objectToString.js","loc":"3:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_objectToString.js","loc":"25:6-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 2:0-35"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":526,"sizes":{"javascript":526},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/constant.js","name":"./node_modules/lodash-es/constant.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/constant.js","index":249,"preOrderIndex":249,"index2":234,"postOrderIndex":234,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","issuerName":"./node_modules/lodash-es/_baseSetToString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","name":"./node_modules/lodash-es/_setToString.js","profile":{"total":52,"resolving":13,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","name":"./node_modules/lodash-es/_baseSetToString.js","profile":{"total":28,"resolving":6,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":6,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./constant.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./constant.js","loc":"17:13-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":485,"sizes":{"javascript":485},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","name":"./node_modules/lodash-es/_assocIndexOf.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","index":264,"preOrderIndex":264,"index2":249,"postOrderIndex":249,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","issuerName":"./node_modules/lodash-es/_listCacheGet.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","name":"./node_modules/lodash-es/_listCacheGet.js","profile":{"total":38,"resolving":31,"restoring":0,"building":7,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":31,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":27,"resolving":18,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":18,"additionalIntegration":0,"factory":18,"dependencies":18},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","module":"./node_modules/lodash-es/_listCacheDelete.js","moduleName":"./node_modules/lodash-es/_listCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","resolvedModule":"./node_modules/lodash-es/_listCacheDelete.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","module":"./node_modules/lodash-es/_listCacheDelete.js","moduleName":"./node_modules/lodash-es/_listCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","resolvedModule":"./node_modules/lodash-es/_listCacheDelete.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"20:14-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","module":"./node_modules/lodash-es/_listCacheGet.js","moduleName":"./node_modules/lodash-es/_listCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","resolvedModule":"./node_modules/lodash-es/_listCacheGet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","module":"./node_modules/lodash-es/_listCacheGet.js","moduleName":"./node_modules/lodash-es/_listCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","resolvedModule":"./node_modules/lodash-es/_listCacheGet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"14:14-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","module":"./node_modules/lodash-es/_listCacheHas.js","moduleName":"./node_modules/lodash-es/_listCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","resolvedModule":"./node_modules/lodash-es/_listCacheHas.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","module":"./node_modules/lodash-es/_listCacheHas.js","moduleName":"./node_modules/lodash-es/_listCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","resolvedModule":"./node_modules/lodash-es/_listCacheHas.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"13:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","module":"./node_modules/lodash-es/_listCacheSet.js","moduleName":"./node_modules/lodash-es/_listCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","resolvedModule":"./node_modules/lodash-es/_listCacheSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","module":"./node_modules/lodash-es/_listCacheSet.js","moduleName":"./node_modules/lodash-es/_listCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","resolvedModule":"./node_modules/lodash-es/_listCacheSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"15:14-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":391,"sizes":{"javascript":391},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","index":275,"preOrderIndex":275,"index2":267,"postOrderIndex":267,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","issuerName":"./node_modules/lodash-es/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_mapCacheClear.js","loc":"1:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_mapCacheClear.js","loc":"26:27-40","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":448,"sizes":{"javascript":448},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","name":"./node_modules/lodash-es/_mapCacheDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","index":283,"preOrderIndex":283,"index2":270,"postOrderIndex":270,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","issuerName":"./node_modules/lodash-es/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":27,"resolving":18,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_mapCacheDelete.js","loc":"2:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_mapCacheDelete.js","loc":"27:31-45","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":328,"sizes":{"javascript":328},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","name":"./node_modules/lodash-es/_mapCacheGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","index":286,"preOrderIndex":286,"index2":271,"postOrderIndex":271,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","issuerName":"./node_modules/lodash-es/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_mapCacheGet.js","loc":"3:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_mapCacheGet.js","loc":"28:25-36","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":380,"sizes":{"javascript":380},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","name":"./node_modules/lodash-es/_mapCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","index":287,"preOrderIndex":287,"index2":272,"postOrderIndex":272,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","issuerName":"./node_modules/lodash-es/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_mapCacheHas.js","loc":"4:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_mapCacheHas.js","loc":"29:25-36","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":487,"sizes":{"javascript":487},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","name":"./node_modules/lodash-es/_mapCacheSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","index":288,"preOrderIndex":288,"index2":273,"postOrderIndex":273,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","issuerName":"./node_modules/lodash-es/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":18,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_mapCacheSet.js","loc":"5:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_mapCacheSet.js","loc":"30:25-36","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":128,"sizes":{"javascript":128},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","name":"./node_modules/lodash-es/_Uint8Array.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","index":306,"preOrderIndex":306,"index2":291,"postOrderIndex":291,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","issuerName":"./node_modules/lodash-es/_cloneArrayBuffer.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","name":"./node_modules/lodash-es/_cloneTypedArray.js","profile":{"total":40,"resolving":12,"restoring":0,"building":28,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","name":"./node_modules/lodash-es/_cloneArrayBuffer.js","profile":{"total":23,"resolving":9,"restoring":0,"building":14,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":7,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","module":"./node_modules/lodash-es/_cloneArrayBuffer.js","moduleName":"./node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModule":"./node_modules/lodash-es/_cloneArrayBuffer.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Uint8Array.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","module":"./node_modules/lodash-es/_cloneArrayBuffer.js","moduleName":"./node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModule":"./node_modules/lodash-es/_cloneArrayBuffer.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Uint8Array.js","loc":"12:6-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","module":"./node_modules/lodash-es/_cloneArrayBuffer.js","moduleName":"./node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModule":"./node_modules/lodash-es/_cloneArrayBuffer.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Uint8Array.js","loc":"12:33-43","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-33"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":380,"sizes":{"javascript":380},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overArg.js","name":"./node_modules/lodash-es/_overArg.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overArg.js","index":309,"preOrderIndex":309,"index2":294,"postOrderIndex":294,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","issuerName":"./node_modules/lodash-es/_getPrototype.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","name":"./node_modules/lodash-es/_initCloneObject.js","profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","name":"./node_modules/lodash-es/_getPrototype.js","profile":{"total":18,"resolving":9,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":9,"dependencies":9},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":17,"resolving":6,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","module":"./node_modules/lodash-es/_getPrototype.js","moduleName":"./node_modules/lodash-es/_getPrototype.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","resolvedModule":"./node_modules/lodash-es/_getPrototype.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_overArg.js","loc":"1:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","module":"./node_modules/lodash-es/_getPrototype.js","moduleName":"./node_modules/lodash-es/_getPrototype.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","resolvedModule":"./node_modules/lodash-es/_getPrototype.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_overArg.js","loc":"4:19-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","module":"./node_modules/lodash-es/_nativeKeys.js","moduleName":"./node_modules/lodash-es/_nativeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","resolvedModule":"./node_modules/lodash-es/_nativeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_overArg.js","loc":"1:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","module":"./node_modules/lodash-es/_nativeKeys.js","moduleName":"./node_modules/lodash-es/_nativeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","resolvedModule":"./node_modules/lodash-es/_nativeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_overArg.js","loc":"4:17-24","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":897,"sizes":{"javascript":897},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","name":"./node_modules/lodash-es/_assignValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","index":314,"preOrderIndex":314,"index2":299,"postOrderIndex":299,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","issuerName":"./node_modules/lodash-es/_copyObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","name":"./node_modules/lodash-es/toPlainObject.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","name":"./node_modules/lodash-es/_copyObject.js","profile":{"total":23,"resolving":10,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","module":"./node_modules/lodash-es/_copyObject.js","moduleName":"./node_modules/lodash-es/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","resolvedModule":"./node_modules/lodash-es/_copyObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assignValue.js","loc":"1:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","module":"./node_modules/lodash-es/_copyObject.js","moduleName":"./node_modules/lodash-es/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","resolvedModule":"./node_modules/lodash-es/_copyObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assignValue.js","loc":"34:6-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 5:0-35"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":513,"sizes":{"javascript":513},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_trimmedEndIndex.js","name":"./node_modules/lodash-es/_trimmedEndIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_trimmedEndIndex.js","index":330,"preOrderIndex":330,"index2":316,"postOrderIndex":316,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","issuerName":"./node_modules/lodash-es/_baseTrim.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","name":"./node_modules/lodash-es/toNumber.js","profile":{"total":33,"resolving":9,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","name":"./node_modules/lodash-es/_baseTrim.js","profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","module":"./node_modules/lodash-es/_baseTrim.js","moduleName":"./node_modules/lodash-es/_baseTrim.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","resolvedModule":"./node_modules/lodash-es/_baseTrim.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_trimmedEndIndex.js","loc":"1:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","module":"./node_modules/lodash-es/_baseTrim.js","moduleName":"./node_modules/lodash-es/_baseTrim.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","resolvedModule":"./node_modules/lodash-es/_baseTrim.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_trimmedEndIndex.js","loc":"15:22-37","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":882,"sizes":{"javascript":882},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","name":"./node_modules/lodash-es/keys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","index":340,"preOrderIndex":340,"index2":328,"postOrderIndex":328,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","issuerName":"./node_modules/lodash-es/_baseForOwn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","name":"./node_modules/lodash-es/_baseForOwn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":17,"resolving":6,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","module":"./node_modules/lodash-es/_baseForOwn.js","moduleName":"./node_modules/lodash-es/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","resolvedModule":"./node_modules/lodash-es/_baseForOwn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./keys.js","loc":"2:0-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","module":"./node_modules/lodash-es/_baseForOwn.js","moduleName":"./node_modules/lodash-es/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","resolvedModule":"./node_modules/lodash-es/_baseForOwn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./keys.js","loc":"13:45-49","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":323,"sizes":{"javascript":323},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getValue.js","name":"./node_modules/lodash-es/_getValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getValue.js","index":235,"preOrderIndex":235,"index2":218,"postOrderIndex":218,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","issuerName":"./node_modules/lodash-es/_getNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":7,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","module":"./node_modules/lodash-es/_getNative.js","moduleName":"./node_modules/lodash-es/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","resolvedModule":"./node_modules/lodash-es/_getNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getValue.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","module":"./node_modules/lodash-es/_getNative.js","moduleName":"./node_modules/lodash-es/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","resolvedModule":"./node_modules/lodash-es/_getNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getValue.js","loc":"13:14-22","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":12},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1415,"sizes":{"javascript":1415},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","name":"./node_modules/lodash-es/_baseIsNative.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","index":236,"preOrderIndex":236,"index2":230,"postOrderIndex":230,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","issuerName":"./node_modules/lodash-es/_getNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","module":"./node_modules/lodash-es/_getNative.js","moduleName":"./node_modules/lodash-es/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","resolvedModule":"./node_modules/lodash-es/_getNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseIsNative.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","module":"./node_modules/lodash-es/_getNative.js","moduleName":"./node_modules/lodash-es/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","resolvedModule":"./node_modules/lodash-es/_getNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseIsNative.js","loc":"14:9-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 16:0-17:35"],"depth":12},{"type":"module","moduleType":"javascript/esm","layer":null,"size":745,"sizes":{"javascript":745},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","index":276,"preOrderIndex":276,"index2":266,"postOrderIndex":266,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","issuerName":"./node_modules/lodash-es/_mapCacheClear.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Hash.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Hash.js","loc":"15:16-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Hash.js","loc":"17:18-22","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 26:0-33"],"depth":12},{"type":"module","moduleType":"javascript/esm","layer":null,"size":398,"sizes":{"javascript":398},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","name":"./node_modules/lodash-es/_getMapData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","index":284,"preOrderIndex":284,"index2":269,"postOrderIndex":269,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","issuerName":"./node_modules/lodash-es/_mapCacheDelete.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","name":"./node_modules/lodash-es/_mapCacheDelete.js","profile":{"total":27,"resolving":18,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":7,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":7,"additionalIntegration":0,"factory":7,"dependencies":7},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","module":"./node_modules/lodash-es/_mapCacheDelete.js","moduleName":"./node_modules/lodash-es/_mapCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","resolvedModule":"./node_modules/lodash-es/_mapCacheDelete.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getMapData.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","module":"./node_modules/lodash-es/_mapCacheDelete.js","moduleName":"./node_modules/lodash-es/_mapCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","resolvedModule":"./node_modules/lodash-es/_mapCacheDelete.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getMapData.js","loc":"13:15-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","module":"./node_modules/lodash-es/_mapCacheGet.js","moduleName":"./node_modules/lodash-es/_mapCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","resolvedModule":"./node_modules/lodash-es/_mapCacheGet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getMapData.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","module":"./node_modules/lodash-es/_mapCacheGet.js","moduleName":"./node_modules/lodash-es/_mapCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","resolvedModule":"./node_modules/lodash-es/_mapCacheGet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getMapData.js","loc":"13:9-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","module":"./node_modules/lodash-es/_mapCacheHas.js","moduleName":"./node_modules/lodash-es/_mapCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","resolvedModule":"./node_modules/lodash-es/_mapCacheHas.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getMapData.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","module":"./node_modules/lodash-es/_mapCacheHas.js","moduleName":"./node_modules/lodash-es/_mapCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","resolvedModule":"./node_modules/lodash-es/_mapCacheHas.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getMapData.js","loc":"13:9-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","module":"./node_modules/lodash-es/_mapCacheSet.js","moduleName":"./node_modules/lodash-es/_mapCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","resolvedModule":"./node_modules/lodash-es/_mapCacheSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getMapData.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","module":"./node_modules/lodash-es/_mapCacheSet.js","moduleName":"./node_modules/lodash-es/_mapCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","resolvedModule":"./node_modules/lodash-es/_mapCacheSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getMapData.js","loc":"14:13-23","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":12},{"type":"module","moduleType":"javascript/esm","layer":null,"size":774,"sizes":{"javascript":774},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","name":"./node_modules/lodash-es/_baseKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","index":341,"preOrderIndex":341,"index2":327,"postOrderIndex":327,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","issuerName":"./node_modules/lodash-es/keys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","name":"./node_modules/lodash-es/_baseForOwn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","name":"./node_modules/lodash-es/keys.js","profile":{"total":17,"resolving":6,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":1,"restoring":0,"building":17,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseKeys.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseKeys.js","loc":"34:55-63","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 5:0-35"],"depth":12},{"type":"module","moduleType":"javascript/esm","layer":null,"size":562,"sizes":{"javascript":562},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","name":"./node_modules/lodash-es/_isMasked.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","index":238,"preOrderIndex":238,"index2":223,"postOrderIndex":223,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","issuerName":"./node_modules/lodash-es/_baseIsNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","name":"./node_modules/lodash-es/_baseIsNative.js","profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":13,"resolving":3,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isMasked.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isMasked.js","loc":"40:26-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-7:5"],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":554,"sizes":{"javascript":554},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_toSource.js","name":"./node_modules/lodash-es/_toSource.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_toSource.js","index":247,"preOrderIndex":247,"index2":229,"postOrderIndex":229,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","issuerName":"./node_modules/lodash-es/_baseIsNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","name":"./node_modules/lodash-es/_baseIsNative.js","profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":15,"resolving":3,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_toSource.js","loc":"4:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_toSource.js","loc":"44:22-30","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 2:0-35"],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":279,"sizes":{"javascript":279},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","name":"./node_modules/lodash-es/_hashClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","index":277,"preOrderIndex":277,"index2":261,"postOrderIndex":261,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","issuerName":"./node_modules/lodash-es/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":8,"resolving":3,"restoring":0,"building":5,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_hashClear.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_hashClear.js","loc":"26:23-32","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":443,"sizes":{"javascript":443},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashDelete.js","name":"./node_modules/lodash-es/_hashDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashDelete.js","index":279,"preOrderIndex":279,"index2":262,"postOrderIndex":262,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","issuerName":"./node_modules/lodash-es/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":12,"resolving":3,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_hashDelete.js","loc":"2:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_hashDelete.js","loc":"27:27-37","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":770,"sizes":{"javascript":770},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","name":"./node_modules/lodash-es/_hashGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","index":280,"preOrderIndex":280,"index2":263,"postOrderIndex":263,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","issuerName":"./node_modules/lodash-es/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":9,"resolving":3,"restoring":0,"building":6,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_hashGet.js","loc":"3:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_hashGet.js","loc":"28:21-28","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 7:0-35"],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":624,"sizes":{"javascript":624},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","name":"./node_modules/lodash-es/_hashHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","index":281,"preOrderIndex":281,"index2":264,"postOrderIndex":264,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","issuerName":"./node_modules/lodash-es/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":11,"resolving":3,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_hashHas.js","loc":"4:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_hashHas.js","loc":"29:21-28","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-35"],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":596,"sizes":{"javascript":596},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","name":"./node_modules/lodash-es/_hashSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","index":282,"preOrderIndex":282,"index2":265,"postOrderIndex":265,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","issuerName":"./node_modules/lodash-es/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":12,"resolving":3,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_hashSet.js","loc":"5:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_hashSet.js","loc":"30:21-28","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":428,"sizes":{"javascript":428},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isKeyable.js","name":"./node_modules/lodash-es/_isKeyable.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isKeyable.js","index":285,"preOrderIndex":285,"index2":268,"postOrderIndex":268,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","issuerName":"./node_modules/lodash-es/_getMapData.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","name":"./node_modules/lodash-es/_mapCacheDelete.js","profile":{"total":27,"resolving":18,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","name":"./node_modules/lodash-es/_getMapData.js","profile":{"total":18,"resolving":7,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":7,"additionalIntegration":0,"factory":7,"dependencies":7},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":12,"resolving":3,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","module":"./node_modules/lodash-es/_getMapData.js","moduleName":"./node_modules/lodash-es/_getMapData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","resolvedModule":"./node_modules/lodash-es/_getMapData.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isKeyable.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","module":"./node_modules/lodash-es/_getMapData.js","moduleName":"./node_modules/lodash-es/_getMapData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","resolvedModule":"./node_modules/lodash-es/_getMapData.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isKeyable.js","loc":"13:9-18","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":202,"sizes":{"javascript":202},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","name":"./node_modules/lodash-es/_nativeKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","index":342,"preOrderIndex":342,"index2":326,"postOrderIndex":326,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","issuerName":"./node_modules/lodash-es/_baseKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","name":"./node_modules/lodash-es/_baseForOwn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","name":"./node_modules/lodash-es/keys.js","profile":{"total":17,"resolving":6,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","name":"./node_modules/lodash-es/_baseKeys.js","profile":{"total":18,"resolving":1,"restoring":0,"building":17,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":14,"resolving":1,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","module":"./node_modules/lodash-es/_baseKeys.js","moduleName":"./node_modules/lodash-es/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","resolvedModule":"./node_modules/lodash-es/_baseKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeKeys.js","loc":"2:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","module":"./node_modules/lodash-es/_baseKeys.js","moduleName":"./node_modules/lodash-es/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","resolvedModule":"./node_modules/lodash-es/_baseKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeKeys.js","loc":"19:11-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-46"],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":155,"sizes":{"javascript":155},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","name":"./node_modules/lodash-es/_coreJsData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","index":239,"preOrderIndex":239,"index2":222,"postOrderIndex":222,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","issuerName":"./node_modules/lodash-es/_isMasked.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","name":"./node_modules/lodash-es/_baseIsNative.js","profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","name":"./node_modules/lodash-es/_isMasked.js","profile":{"total":13,"resolving":3,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":6,"resolving":4,"restoring":0,"building":2,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","module":"./node_modules/lodash-es/_isMasked.js","moduleName":"./node_modules/lodash-es/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","resolvedModule":"./node_modules/lodash-es/_isMasked.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_coreJsData.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","module":"./node_modules/lodash-es/_isMasked.js","moduleName":"./node_modules/lodash-es/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","resolvedModule":"./node_modules/lodash-es/_isMasked.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_coreJsData.js","loc":"5:26-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","module":"./node_modules/lodash-es/_isMasked.js","moduleName":"./node_modules/lodash-es/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","resolvedModule":"./node_modules/lodash-es/_isMasked.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_coreJsData.js","loc":"5:40-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","module":"./node_modules/lodash-es/_isMasked.js","moduleName":"./node_modules/lodash-es/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","resolvedModule":"./node_modules/lodash-es/_isMasked.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_coreJsData.js","loc":"5:59-83","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-44"],"depth":14},{"type":"module","moduleType":"javascript/esm","layer":null,"size":185,"sizes":{"javascript":185},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","name":"./node_modules/lodash-es/_nativeCreate.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","index":278,"preOrderIndex":278,"index2":260,"postOrderIndex":260,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","issuerName":"./node_modules/lodash-es/_hashClear.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","name":"./node_modules/lodash-es/_hashClear.js","profile":{"total":8,"resolving":3,"restoring":0,"building":5,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":6,"resolving":4,"restoring":0,"building":2,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":4,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","module":"./node_modules/lodash-es/_hashClear.js","moduleName":"./node_modules/lodash-es/_hashClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","resolvedModule":"./node_modules/lodash-es/_hashClear.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeCreate.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","module":"./node_modules/lodash-es/_hashClear.js","moduleName":"./node_modules/lodash-es/_hashClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","resolvedModule":"./node_modules/lodash-es/_hashClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeCreate.js","loc":"11:18-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","module":"./node_modules/lodash-es/_hashClear.js","moduleName":"./node_modules/lodash-es/_hashClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","resolvedModule":"./node_modules/lodash-es/_hashClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeCreate.js","loc":"11:33-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","module":"./node_modules/lodash-es/_hashGet.js","moduleName":"./node_modules/lodash-es/_hashGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","resolvedModule":"./node_modules/lodash-es/_hashGet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeCreate.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","module":"./node_modules/lodash-es/_hashGet.js","moduleName":"./node_modules/lodash-es/_hashGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","resolvedModule":"./node_modules/lodash-es/_hashGet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeCreate.js","loc":"23:6-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","module":"./node_modules/lodash-es/_hashHas.js","moduleName":"./node_modules/lodash-es/_hashHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","resolvedModule":"./node_modules/lodash-es/_hashHas.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeCreate.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","module":"./node_modules/lodash-es/_hashHas.js","moduleName":"./node_modules/lodash-es/_hashHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","resolvedModule":"./node_modules/lodash-es/_hashHas.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeCreate.js","loc":"20:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","module":"./node_modules/lodash-es/_hashSet.js","moduleName":"./node_modules/lodash-es/_hashSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","resolvedModule":"./node_modules/lodash-es/_hashSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeCreate.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","module":"./node_modules/lodash-es/_hashSet.js","moduleName":"./node_modules/lodash-es/_hashSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","resolvedModule":"./node_modules/lodash-es/_hashSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeCreate.js","loc":"19:15-27","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-47"],"depth":14}]},{"type":"module","moduleType":"javascript/dynamic","layer":null,"size":42,"sizes":{"javascript":42},"built":true,"codeGenerated":true,"cached":false,"identifier":"external \"jQuery\"","name":"external \"jQuery\"","nameForCondition":null,"index":1,"preOrderIndex":1,"index2":0,"postOrderIndex":0,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3609,"issuerId":null,"chunks":[81,104,290,527,628,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"12:0-23","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"33:6-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:6-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"11:0-23","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"158:29-37","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"247:2-8","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"11:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"158:29-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"247:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"5:25-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"25:27-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"35:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"43:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"44:25-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"59:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"72:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"82:4-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"86:8-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"101:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"111:4-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"10:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"12:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:34-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:29-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:29-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"37:13-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"5:23-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"31:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"13:2-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"20:2-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"27:11-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"27:24-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"68:8-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"69:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"81:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"82:33-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"86:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"87:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"95:8-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"102:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"103:33-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"107:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"108:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"115:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"116:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"119:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"145:8-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:22-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"7:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"9:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"25:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"35:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"39:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"2:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"9:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"11:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"62:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"75:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:27-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"10:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:18-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"24:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","module":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","moduleName":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","module":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","moduleName":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"57:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","module":"./src/_js/customizer/fonts/utils/update-font-head-title.js","moduleName":"./src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","module":"./src/_js/customizer/fonts/utils/update-font-head-title.js","moduleName":"./src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","module":"./src/_js/customizer/fonts/utils/update-variant-field.js","moduleName":"./src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","module":"./src/_js/customizer/fonts/utils/update-variant-field.js","moduleName":"./src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"40:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"5:25-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"25:27-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"35:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"43:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"44:25-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"59:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"72:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"82:4-10","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"86:8-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"101:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"111:4-10","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"10:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"12:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:34-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:29-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:29-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"37:13-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"5:23-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"31:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"13:2-33","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"20:2-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"27:11-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"27:24-44","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"68:8-9","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"69:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"81:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"82:33-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"86:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"87:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"95:8-9","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"102:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"103:33-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"107:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"108:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"115:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"116:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"119:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"145:8-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:22-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"7:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"9:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"25:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"35:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"39:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"2:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"9:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"11:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"62:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"75:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:27-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"10:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:18-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"24:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"57:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"40:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"6:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:23-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"6:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:23-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"9:0-23","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"13:12-13","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:20-21","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:17-18","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"23:31-32","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"44:6-7","moduleId":4299,"resolvedModuleId":4299}],"usedExports":true,"providedExports":null,"optimizationBailout":["ModuleConcatenation bailout: Module is not in strict mode"],"depth":1},{"type":"module","moduleType":"runtime","layer":null,"size":302,"sizes":{"runtime":302},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/compat get default export","name":"webpack/runtime/compat get default export","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[290],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":313,"sizes":{"runtime":313},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/define property getters","name":"webpack/runtime/define property getters","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[290],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":221,"sizes":{"runtime":221},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/global","name":"webpack/runtime/global","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[290],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":103,"sizes":{"runtime":103},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/hasOwnProperty shorthand","name":"webpack/runtime/hasOwnProperty shorthand","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[290],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":279,"sizes":{"runtime":279},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/make namespace object","name":"webpack/runtime/make namespace object","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[290],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":128,"sizes":{"runtime":128},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/node module decorator","name":"webpack/runtime/node module decorator","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[290],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null}],"origins":[{"module":"","moduleIdentifier":"","moduleName":"","loc":"customizer","request":"./src/_js/customizer/index.js"}]},{"rendered":true,"initial":true,"entry":true,"recorded":false,"size":10030,"sizes":{"javascript":10030},"names":["customizerSearch"],"idHints":[],"runtime":["customizerSearch"],"files":["customizer-search.js"],"auxiliaryFiles":[],"hash":"4fbf001986a0745e6112","childrenByOrder":{},"id":354,"siblings":[],"parents":[],"children":[],"modules":[{"type":"module","moduleType":"javascript/auto","layer":null,"size":10030,"sizes":{"javascript":10030},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-search/index.js","name":"./src/_js/customizer-search/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-search/index.js","index":389,"preOrderIndex":389,"index2":389,"postOrderIndex":389,"cacheable":true,"optional":false,"orphan":false,"dependent":false,"issuer":null,"issuerName":null,"issuerPath":null,"failed":false,"errors":0,"warnings":0,"profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":5785,"issuerId":null,"chunks":[354,597],"assets":[],"reasons":[{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer-search/index.js","loc":"customizerSearch","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer-search/index.js","loc":"customizerSearch.min","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null}],"usedExports":true,"providedExports":null,"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 8:0-62","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":0}],"origins":[{"module":"","moduleIdentifier":"","moduleName":"","loc":"customizerSearch","request":"./src/_js/customizer-search/index.js"}]},{"rendered":true,"initial":true,"entry":true,"recorded":false,"size":152624,"sizes":{"javascript":151278,"runtime":1346},"names":["customizerPreview.min"],"idHints":[],"runtime":["customizerPreview.min"],"files":["customizer-preview.min.js"],"auxiliaryFiles":[],"hash":"b9026bacb6f3c8623b23","childrenByOrder":{},"id":527,"siblings":[],"parents":[],"children":[],"modules":[{"type":"module","moduleType":"javascript/auto","layer":null,"size":2223,"sizes":{"javascript":2223},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","index":371,"preOrderIndex":371,"index2":369,"postOrderIndex":369,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","issuerName":"./src/_js/customizer-preview/style.scss","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./src/_js/customizer-preview/style.scss","profile":{"total":352,"resolving":326,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":326,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":728,"resolving":3,"restoring":0,"building":725,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":946,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"2:12-140","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"9:17-24","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"13:15-29","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"2:12-140","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"9:17-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"13:15-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 3:0-84","ModuleConcatenation bailout: Module uses module.id"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1605,"sizes":{"javascript":1605},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/runtime/api.js","name":"./node_modules/css-loader/dist/runtime/api.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/runtime/api.js","index":126,"preOrderIndex":126,"index2":119,"postOrderIndex":119,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","issuerName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./src/_js/customizer-preview/style.scss","profile":{"total":352,"resolving":326,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":326,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","profile":{"total":728,"resolving":3,"restoring":0,"building":725,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":946}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3645,"issuerId":946,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../../node_modules/css-loader/dist/runtime/api.js","loc":"2:0-95","moduleId":946,"resolvedModuleId":946},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../node_modules/css-loader/dist/runtime/api.js","loc":"3:30-57","moduleId":946,"resolvedModuleId":946},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../../../../../node_modules/css-loader/dist/runtime/api.js","loc":"2:0-104","moduleId":3708,"resolvedModuleId":3708},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../../../../node_modules/css-loader/dist/runtime/api.js","loc":"3:30-57","moduleId":3708,"resolvedModuleId":3708},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../../../../../node_modules/css-loader/dist/runtime/api.js","loc":"2:0-104","moduleId":9805,"resolvedModuleId":9805},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../../../../node_modules/css-loader/dist/runtime/api.js","loc":"3:30-57","moduleId":9805,"resolvedModuleId":9805},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/runtime/api.js","module":"./node_modules/css-loader/dist/runtime/api.js","moduleName":"./node_modules/css-loader/dist/runtime/api.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/runtime/api.js","resolvedModule":"./node_modules/css-loader/dist/runtime/api.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"9:0-14","moduleId":3645,"resolvedModuleId":3645}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 9:0-14","Statement (ExpressionStatement) with side effects in source code at 9:0-66:2","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":210,"sizes":{"javascript":210},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","index":173,"preOrderIndex":173,"index2":156,"postOrderIndex":156,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","module":"./node_modules/lodash/_DataView.js","moduleName":"./node_modules/lodash/_DataView.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","resolvedModule":"./node_modules/lodash/_DataView.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":8552,"resolvedModuleId":8552},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_DataView","loc":"1:15-37","moduleId":4160,"resolvedModuleId":4160}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":747,"sizes":{"javascript":747},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","index":53,"preOrderIndex":53,"index2":53,"postOrderIndex":53,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","issuerName":"./node_modules/lodash/_mapCacheClear.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989,"issuerId":4785,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","module":"./node_modules/lodash/_mapCacheClear.js","moduleName":"./node_modules/lodash/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","resolvedModule":"./node_modules/lodash/_mapCacheClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Hash","loc":"1:11-29","moduleId":4785,"resolvedModuleId":4785}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":869,"sizes":{"javascript":869},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","index":66,"preOrderIndex":66,"index2":61,"postOrderIndex":61,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_ListCache","loc":"1:16-39","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","module":"./node_modules/lodash/_mapCacheClear.js","moduleName":"./node_modules/lodash/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","resolvedModule":"./node_modules/lodash/_mapCacheClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_ListCache","loc":"2:16-39","moduleId":4785,"resolvedModuleId":4785},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","module":"./node_modules/lodash/_stackClear.js","moduleName":"./node_modules/lodash/_stackClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","resolvedModule":"./node_modules/lodash/_stackClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_ListCache","loc":"1:16-39","moduleId":7465,"resolvedModuleId":7465},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","module":"./node_modules/lodash/_stackSet.js","moduleName":"./node_modules/lodash/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","resolvedModule":"./node_modules/lodash/_stackSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_ListCache","loc":"1:16-39","moduleId":4309,"resolvedModuleId":4309}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":195,"sizes":{"javascript":195},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","name":"./node_modules/lodash/_Map.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","index":74,"preOrderIndex":74,"index2":62,"postOrderIndex":62,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7071,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","module":"./node_modules/lodash/_Map.js","moduleName":"./node_modules/lodash/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","resolvedModule":"./node_modules/lodash/_Map.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":7071,"resolvedModuleId":7071},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Map","loc":"2:10-27","moduleId":4160,"resolvedModuleId":4160},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","module":"./node_modules/lodash/_mapCacheClear.js","moduleName":"./node_modules/lodash/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","resolvedModule":"./node_modules/lodash/_mapCacheClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Map","loc":"3:10-27","moduleId":4785,"resolvedModuleId":4785},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","module":"./node_modules/lodash/_stackSet.js","moduleName":"./node_modules/lodash/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","resolvedModule":"./node_modules/lodash/_stackSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Map","loc":"2:10-27","moduleId":4309,"resolvedModuleId":4309}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":869,"sizes":{"javascript":869},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","index":51,"preOrderIndex":51,"index2":70,"postOrderIndex":70,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","issuerName":"./node_modules/lodash/memoize.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369,"issuerId":8306,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","module":"./node_modules/lodash/_SetCache.js","moduleName":"./node_modules/lodash/_SetCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","resolvedModule":"./node_modules/lodash/_SetCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_MapCache","loc":"1:15-37","moduleId":8668,"resolvedModuleId":8668},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","module":"./node_modules/lodash/_stackSet.js","moduleName":"./node_modules/lodash/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","resolvedModule":"./node_modules/lodash/_stackSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_MapCache","loc":"3:15-37","moduleId":4309,"resolvedModuleId":4309},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","module":"./node_modules/lodash/memoize.js","moduleName":"./node_modules/lodash/memoize.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","resolvedModule":"./node_modules/lodash/memoize.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_MapCache","loc":"1:15-37","moduleId":8306,"resolvedModuleId":8306}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":207,"sizes":{"javascript":207},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","name":"./node_modules/lodash/_Promise.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","index":174,"preOrderIndex":174,"index2":157,"postOrderIndex":157,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3818,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","module":"./node_modules/lodash/_Promise.js","moduleName":"./node_modules/lodash/_Promise.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","resolvedModule":"./node_modules/lodash/_Promise.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":3818,"resolvedModuleId":3818},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Promise","loc":"3:14-35","moduleId":4160,"resolvedModuleId":4160}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":195,"sizes":{"javascript":195},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","name":"./node_modules/lodash/_Set.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","index":175,"preOrderIndex":175,"index2":158,"postOrderIndex":158,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8525,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","module":"./node_modules/lodash/_Set.js","moduleName":"./node_modules/lodash/_Set.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","resolvedModule":"./node_modules/lodash/_Set.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":8525,"resolvedModuleId":8525},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Set","loc":"4:10-27","moduleId":4160,"resolvedModuleId":4160}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":632,"sizes":{"javascript":632},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","name":"./node_modules/lodash/_SetCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","index":157,"preOrderIndex":157,"index2":142,"postOrderIndex":142,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","issuerName":"./node_modules/lodash/_equalArrays.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8668,"issuerId":7114,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","module":"./node_modules/lodash/_SetCache.js","moduleName":"./node_modules/lodash/_SetCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","resolvedModule":"./node_modules/lodash/_SetCache.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":8668,"resolvedModuleId":8668},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","module":"./node_modules/lodash/_equalArrays.js","moduleName":"./node_modules/lodash/_equalArrays.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","resolvedModule":"./node_modules/lodash/_equalArrays.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_SetCache","loc":"1:15-37","moduleId":7114,"resolvedModuleId":7114}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":734,"sizes":{"javascript":734},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","index":148,"preOrderIndex":148,"index2":139,"postOrderIndex":139,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","issuerName":"./node_modules/lodash/_baseIsMatch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384,"issuerId":2958,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Stack","loc":"1:12-31","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Stack","loc":"1:12-31","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","module":"./node_modules/lodash/_baseIsMatch.js","moduleName":"./node_modules/lodash/_baseIsMatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","resolvedModule":"./node_modules/lodash/_baseIsMatch.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Stack","loc":"1:12-31","moduleId":2958,"resolvedModuleId":2958}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-6:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":118,"sizes":{"javascript":118},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","name":"./node_modules/lodash/_Symbol.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","index":16,"preOrderIndex":16,"index2":7,"postOrderIndex":7,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","issuerName":"./node_modules/lodash/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","name":"./node_modules/lodash/_baseGetTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4239}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":2705,"issuerId":4239,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","module":"./node_modules/lodash/_Symbol.js","moduleName":"./node_modules/lodash/_Symbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","resolvedModule":"./node_modules/lodash/_Symbol.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":2705,"resolvedModuleId":2705},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","module":"./node_modules/lodash/_baseGetTag.js","moduleName":"./node_modules/lodash/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","resolvedModule":"./node_modules/lodash/_baseGetTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":4239,"resolvedModuleId":4239},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneSymbol.js","module":"./node_modules/lodash/_cloneSymbol.js","moduleName":"./node_modules/lodash/_cloneSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneSymbol.js","resolvedModule":"./node_modules/lodash/_cloneSymbol.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":419,"resolvedModuleId":419},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":8351,"resolvedModuleId":8351},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","module":"./node_modules/lodash/_getRawTag.js","moduleName":"./node_modules/lodash/_getRawTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","resolvedModule":"./node_modules/lodash/_getRawTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":9607,"resolvedModuleId":9607},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","module":"./node_modules/lodash/_isFlattenable.js","moduleName":"./node_modules/lodash/_isFlattenable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","resolvedModule":"./node_modules/lodash/_isFlattenable.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":7285,"resolvedModuleId":7285}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":130,"sizes":{"javascript":130},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","name":"./node_modules/lodash/_Uint8Array.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","index":163,"preOrderIndex":163,"index2":146,"postOrderIndex":146,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","issuerName":"./node_modules/lodash/_equalByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","name":"./node_modules/lodash/_equalByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8351}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":1149,"issuerId":8351,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","module":"./node_modules/lodash/_Uint8Array.js","moduleName":"./node_modules/lodash/_Uint8Array.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","resolvedModule":"./node_modules/lodash/_Uint8Array.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":1149,"resolvedModuleId":1149},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneArrayBuffer.js","module":"./node_modules/lodash/_cloneArrayBuffer.js","moduleName":"./node_modules/lodash/_cloneArrayBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneArrayBuffer.js","resolvedModule":"./node_modules/lodash/_cloneArrayBuffer.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Uint8Array","loc":"1:17-41","moduleId":4318,"resolvedModuleId":4318},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Uint8Array","loc":"2:17-41","moduleId":8351,"resolvedModuleId":8351}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":207,"sizes":{"javascript":207},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","name":"./node_modules/lodash/_WeakMap.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","index":176,"preOrderIndex":176,"index2":159,"postOrderIndex":159,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":577,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","module":"./node_modules/lodash/_WeakMap.js","moduleName":"./node_modules/lodash/_WeakMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","resolvedModule":"./node_modules/lodash/_WeakMap.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":577,"resolvedModuleId":577},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_WeakMap","loc":"5:14-35","moduleId":4160,"resolvedModuleId":4160}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":537,"sizes":{"javascript":537},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayEach.js","name":"./node_modules/lodash/_arrayEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayEach.js","index":5,"preOrderIndex":5,"index2":1,"postOrderIndex":1,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","issuerName":"./node_modules/lodash/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7412,"issuerId":4486,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayEach.js","module":"./node_modules/lodash/_arrayEach.js","moduleName":"./node_modules/lodash/_arrayEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayEach.js","resolvedModule":"./node_modules/lodash/_arrayEach.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":7412,"resolvedModuleId":7412},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayEach","loc":"2:16-39","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayEach","loc":"1:16-39","moduleId":4486,"resolvedModuleId":4486}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (ExpressionStatement) with side effects in source code at 22:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":632,"sizes":{"javascript":632},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayFilter.js","name":"./node_modules/lodash/_arrayFilter.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayFilter.js","index":170,"preOrderIndex":170,"index2":151,"postOrderIndex":151,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","issuerName":"./node_modules/lodash/_getSymbols.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","name":"./node_modules/lodash/_getSymbols.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9551}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4963,"issuerId":9551,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayFilter.js","module":"./node_modules/lodash/_arrayFilter.js","moduleName":"./node_modules/lodash/_arrayFilter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayFilter.js","resolvedModule":"./node_modules/lodash/_arrayFilter.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":4963,"resolvedModuleId":4963},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","module":"./node_modules/lodash/_getSymbols.js","moduleName":"./node_modules/lodash/_getSymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","resolvedModule":"./node_modules/lodash/_getSymbols.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayFilter","loc":"1:18-43","moduleId":9551,"resolvedModuleId":9551}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (ExpressionStatement) with side effects in source code at 25:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1778,"sizes":{"javascript":1778},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","name":"./node_modules/lodash/_arrayLikeKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","index":11,"preOrderIndex":11,"index2":23,"postOrderIndex":23,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","issuerName":"./node_modules/lodash/keys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","name":"./node_modules/lodash/keys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3674}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4636,"issuerId":3674,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"49:0-14","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","module":"./node_modules/lodash/keys.js","moduleName":"./node_modules/lodash/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","resolvedModule":"./node_modules/lodash/keys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayLikeKeys","loc":"1:20-47","moduleId":3674,"resolvedModuleId":3674},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","module":"./node_modules/lodash/keysIn.js","moduleName":"./node_modules/lodash/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","resolvedModule":"./node_modules/lodash/keysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayLikeKeys","loc":"1:20-47","moduleId":1704,"resolvedModuleId":1704}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 49:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-6:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":556,"sizes":{"javascript":556},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayMap.js","name":"./node_modules/lodash/_arrayMap.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayMap.js","index":83,"preOrderIndex":83,"index2":74,"postOrderIndex":74,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","issuerName":"./node_modules/lodash/_baseValues.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","name":"./node_modules/lodash/values.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2628},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","name":"./node_modules/lodash/_baseValues.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7415}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9932,"issuerId":7415,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayMap.js","module":"./node_modules/lodash/_arrayMap.js","moduleName":"./node_modules/lodash/_arrayMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayMap.js","resolvedModule":"./node_modules/lodash/_arrayMap.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":9932,"resolvedModuleId":9932},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayMap","loc":"2:15-37","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","module":"./node_modules/lodash/_baseValues.js","moduleName":"./node_modules/lodash/_baseValues.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","resolvedModule":"./node_modules/lodash/_baseValues.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayMap","loc":"1:15-37","moduleId":7415,"resolvedModuleId":7415},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","module":"./node_modules/lodash/map.js","moduleName":"./node_modules/lodash/map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","resolvedModule":"./node_modules/lodash/map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayMap","loc":"1:15-37","moduleId":5161,"resolvedModuleId":5161}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (ExpressionStatement) with side effects in source code at 21:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":437,"sizes":{"javascript":437},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayPush.js","name":"./node_modules/lodash/_arrayPush.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayPush.js","index":95,"preOrderIndex":95,"index2":89,"postOrderIndex":89,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","issuerName":"./node_modules/lodash/_baseFlatten.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","name":"./node_modules/lodash/flatten.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5564},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","name":"./node_modules/lodash/_baseFlatten.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1078}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":2488,"issuerId":1078,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayPush.js","module":"./node_modules/lodash/_arrayPush.js","moduleName":"./node_modules/lodash/_arrayPush.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayPush.js","resolvedModule":"./node_modules/lodash/_arrayPush.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":2488,"resolvedModuleId":2488},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","module":"./node_modules/lodash/_baseFlatten.js","moduleName":"./node_modules/lodash/_baseFlatten.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","resolvedModule":"./node_modules/lodash/_baseFlatten.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayPush","loc":"1:16-39","moduleId":1078,"resolvedModuleId":1078},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","module":"./node_modules/lodash/_baseGetAllKeys.js","moduleName":"./node_modules/lodash/_baseGetAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","resolvedModule":"./node_modules/lodash/_baseGetAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayPush","loc":"1:16-39","moduleId":8866,"resolvedModuleId":8866},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","module":"./node_modules/lodash/_getSymbolsIn.js","moduleName":"./node_modules/lodash/_getSymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","resolvedModule":"./node_modules/lodash/_getSymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayPush","loc":"1:16-39","moduleId":1442,"resolvedModuleId":1442}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (ExpressionStatement) with side effects in source code at 20:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":594,"sizes":{"javascript":594},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arraySome.js","name":"./node_modules/lodash/_arraySome.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arraySome.js","index":160,"preOrderIndex":160,"index2":143,"postOrderIndex":143,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","issuerName":"./node_modules/lodash/_equalArrays.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2908,"issuerId":7114,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arraySome.js","module":"./node_modules/lodash/_arraySome.js","moduleName":"./node_modules/lodash/_arraySome.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arraySome.js","resolvedModule":"./node_modules/lodash/_arraySome.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":2908,"resolvedModuleId":2908},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","module":"./node_modules/lodash/_equalArrays.js","moduleName":"./node_modules/lodash/_equalArrays.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","resolvedModule":"./node_modules/lodash/_equalArrays.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arraySome","loc":"2:16-39","moduleId":7114,"resolvedModuleId":7114}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (ExpressionStatement) with side effects in source code at 23:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":487,"sizes":{"javascript":487},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","name":"./node_modules/lodash/_assocIndexOf.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","index":69,"preOrderIndex":69,"index2":56,"postOrderIndex":56,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","issuerName":"./node_modules/lodash/_listCacheDelete.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","name":"./node_modules/lodash/_listCacheDelete.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4125}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8470,"issuerId":4125,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","module":"./node_modules/lodash/_assocIndexOf.js","moduleName":"./node_modules/lodash/_assocIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","resolvedModule":"./node_modules/lodash/_assocIndexOf.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":8470,"resolvedModuleId":8470},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","module":"./node_modules/lodash/_listCacheDelete.js","moduleName":"./node_modules/lodash/_listCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","resolvedModule":"./node_modules/lodash/_listCacheDelete.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assocIndexOf","loc":"1:19-45","moduleId":4125,"resolvedModuleId":4125},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","module":"./node_modules/lodash/_listCacheGet.js","moduleName":"./node_modules/lodash/_listCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","resolvedModule":"./node_modules/lodash/_listCacheGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assocIndexOf","loc":"1:19-45","moduleId":2117,"resolvedModuleId":2117},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","module":"./node_modules/lodash/_listCacheHas.js","moduleName":"./node_modules/lodash/_listCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","resolvedModule":"./node_modules/lodash/_listCacheHas.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assocIndexOf","loc":"1:19-45","moduleId":7529,"resolvedModuleId":7529},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","module":"./node_modules/lodash/_listCacheSet.js","moduleName":"./node_modules/lodash/_listCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","resolvedModule":"./node_modules/lodash/_listCacheSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assocIndexOf","loc":"1:19-45","moduleId":4705,"resolvedModuleId":4705}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-25","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":455,"sizes":{"javascript":455},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","index":6,"preOrderIndex":6,"index2":34,"postOrderIndex":34,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","issuerName":"./node_modules/lodash/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881,"issuerId":4486,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","module":"./node_modules/lodash/_baseEach.js","moduleName":"./node_modules/lodash/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","resolvedModule":"./node_modules/lodash/_baseEach.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":9881,"resolvedModuleId":9881},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","module":"./node_modules/lodash/_baseMap.js","moduleName":"./node_modules/lodash/_baseMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","resolvedModule":"./node_modules/lodash/_baseMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseEach","loc":"1:15-37","moduleId":9199,"resolvedModuleId":9199},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseEach","loc":"2:15-37","moduleId":4486,"resolvedModuleId":4486}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:50","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":766,"sizes":{"javascript":766},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFindIndex.js","name":"./node_modules/lodash/_baseFindIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFindIndex.js","index":376,"preOrderIndex":376,"index2":372,"postOrderIndex":372,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","issuerName":"./node_modules/lodash/findIndex.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","name":"./node_modules/lodash/findIndex.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":998}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1848,"issuerId":998,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFindIndex.js","module":"./node_modules/lodash/_baseFindIndex.js","moduleName":"./node_modules/lodash/_baseFindIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFindIndex.js","resolvedModule":"./node_modules/lodash/_baseFindIndex.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"24:0-14","moduleId":1848,"resolvedModuleId":1848},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","module":"./node_modules/lodash/_baseIndexOf.js","moduleName":"./node_modules/lodash/_baseIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","resolvedModule":"./node_modules/lodash/_baseIndexOf.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseFindIndex","loc":"1:20-47","moduleId":2118,"resolvedModuleId":2118},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","module":"./node_modules/lodash/findIndex.js","moduleName":"./node_modules/lodash/findIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","resolvedModule":"./node_modules/lodash/findIndex.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseFindIndex","loc":"1:20-47","moduleId":998,"resolvedModuleId":998}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 24:0-14","Statement (ExpressionStatement) with side effects in source code at 24:0-31","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":593,"sizes":{"javascript":593},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","name":"./node_modules/lodash/_baseFor.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","index":8,"preOrderIndex":8,"index2":3,"postOrderIndex":3,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","issuerName":"./node_modules/lodash/_baseForOwn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","name":"./node_modules/lodash/_baseForOwn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7816}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8483,"issuerId":7816,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","module":"./node_modules/lodash/_baseFor.js","moduleName":"./node_modules/lodash/_baseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","resolvedModule":"./node_modules/lodash/_baseFor.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":8483,"resolvedModuleId":8483},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","module":"./node_modules/lodash/_baseForOwn.js","moduleName":"./node_modules/lodash/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","resolvedModule":"./node_modules/lodash/_baseForOwn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseFor","loc":"1:14-35","moduleId":7816,"resolvedModuleId":7816}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-48","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":456,"sizes":{"javascript":456},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","name":"./node_modules/lodash/_baseForOwn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","index":7,"preOrderIndex":7,"index2":32,"postOrderIndex":32,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","issuerName":"./node_modules/lodash/_baseEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7816,"issuerId":9881,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","module":"./node_modules/lodash/_baseEach.js","moduleName":"./node_modules/lodash/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","resolvedModule":"./node_modules/lodash/_baseEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseForOwn","loc":"1:17-41","moduleId":9881,"resolvedModuleId":9881},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","module":"./node_modules/lodash/_baseForOwn.js","moduleName":"./node_modules/lodash/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","resolvedModule":"./node_modules/lodash/_baseForOwn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":7816,"resolvedModuleId":7816},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","module":"./node_modules/lodash/forOwn.js","moduleName":"./node_modules/lodash/forOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","resolvedModule":"./node_modules/lodash/forOwn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseForOwn","loc":"1:17-41","moduleId":2525,"resolvedModuleId":2525}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":616,"sizes":{"javascript":616},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","name":"./node_modules/lodash/_baseGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","index":44,"preOrderIndex":44,"index2":79,"postOrderIndex":79,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","issuerName":"./node_modules/lodash/_basePickBy.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","name":"./node_modules/lodash/_basePickBy.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3012}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":7786,"issuerId":3012,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","module":"./node_modules/lodash/_baseGet.js","moduleName":"./node_modules/lodash/_baseGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","resolvedModule":"./node_modules/lodash/_baseGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"24:0-14","moduleId":7786,"resolvedModuleId":7786},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","module":"./node_modules/lodash/_basePickBy.js","moduleName":"./node_modules/lodash/_basePickBy.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","resolvedModule":"./node_modules/lodash/_basePickBy.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGet","loc":"1:14-35","moduleId":3012,"resolvedModuleId":3012},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","module":"./node_modules/lodash/_basePropertyDeep.js","moduleName":"./node_modules/lodash/_basePropertyDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","resolvedModule":"./node_modules/lodash/_basePropertyDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGet","loc":"1:14-35","moduleId":9152,"resolvedModuleId":9152},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","module":"./node_modules/lodash/get.js","moduleName":"./node_modules/lodash/get.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","resolvedModule":"./node_modules/lodash/get.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGet","loc":"1:14-35","moduleId":7361,"resolvedModuleId":7361}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 24:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":739,"sizes":{"javascript":739},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","name":"./node_modules/lodash/_baseGetAllKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","index":168,"preOrderIndex":168,"index2":150,"postOrderIndex":150,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","issuerName":"./node_modules/lodash/_getAllKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":8866,"issuerId":8234,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","module":"./node_modules/lodash/_baseGetAllKeys.js","moduleName":"./node_modules/lodash/_baseGetAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","resolvedModule":"./node_modules/lodash/_baseGetAllKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":8866,"resolvedModuleId":8866},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","module":"./node_modules/lodash/_getAllKeys.js","moduleName":"./node_modules/lodash/_getAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","resolvedModule":"./node_modules/lodash/_getAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetAllKeys","loc":"1:21-49","moduleId":8234,"resolvedModuleId":8234},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","module":"./node_modules/lodash/_getAllKeysIn.js","moduleName":"./node_modules/lodash/_getAllKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","resolvedModule":"./node_modules/lodash/_getAllKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetAllKeys","loc":"1:21-49","moduleId":6904,"resolvedModuleId":6904}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":792,"sizes":{"javascript":792},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","name":"./node_modules/lodash/_baseGetTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","index":15,"preOrderIndex":15,"index2":10,"postOrderIndex":10,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","issuerName":"./node_modules/lodash/isString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4239,"issuerId":7037,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","module":"./node_modules/lodash/_baseGetTag.js","moduleName":"./node_modules/lodash/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","resolvedModule":"./node_modules/lodash/_baseGetTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"28:0-14","moduleId":4239,"resolvedModuleId":4239},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","module":"./node_modules/lodash/_baseIsArguments.js","moduleName":"./node_modules/lodash/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","resolvedModule":"./node_modules/lodash/_baseIsArguments.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":9454,"resolvedModuleId":9454},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","module":"./node_modules/lodash/_baseIsTypedArray.js","moduleName":"./node_modules/lodash/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash/_baseIsTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":8749,"resolvedModuleId":8749},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"6:17-41","moduleId":4160,"resolvedModuleId":4160},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","module":"./node_modules/lodash/isFunction.js","moduleName":"./node_modules/lodash/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","resolvedModule":"./node_modules/lodash/isFunction.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":3560,"resolvedModuleId":3560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","module":"./node_modules/lodash/isNumber.js","moduleName":"./node_modules/lodash/isNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","resolvedModule":"./node_modules/lodash/isNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":1763,"resolvedModuleId":1763},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","module":"./node_modules/lodash/isPlainObject.js","moduleName":"./node_modules/lodash/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","resolvedModule":"./node_modules/lodash/isPlainObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":8630,"resolvedModuleId":8630},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","module":"./node_modules/lodash/isString.js","moduleName":"./node_modules/lodash/isString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","resolvedModule":"./node_modules/lodash/isString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":7037,"resolvedModuleId":7037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","module":"./node_modules/lodash/isSymbol.js","moduleName":"./node_modules/lodash/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","resolvedModule":"./node_modules/lodash/isSymbol.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":3448,"resolvedModuleId":3448}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 28:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:50","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":559,"sizes":{"javascript":559},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHas.js","name":"./node_modules/lodash/_baseHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHas.js","index":380,"preOrderIndex":380,"index2":377,"postOrderIndex":377,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","issuerName":"./node_modules/lodash/has.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8565,"issuerId":8721,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHas.js","module":"./node_modules/lodash/_baseHas.js","moduleName":"./node_modules/lodash/_baseHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHas.js","resolvedModule":"./node_modules/lodash/_baseHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":8565,"resolvedModuleId":8565},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","module":"./node_modules/lodash/has.js","moduleName":"./node_modules/lodash/has.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","resolvedModule":"./node_modules/lodash/has.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseHas","loc":"1:14-35","moduleId":8721,"resolvedModuleId":8721}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":374,"sizes":{"javascript":374},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHasIn.js","name":"./node_modules/lodash/_baseHasIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHasIn.js","index":90,"preOrderIndex":90,"index2":85,"postOrderIndex":85,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","issuerName":"./node_modules/lodash/hasIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","name":"./node_modules/lodash/hasIn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":9095}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":13,"issuerId":9095,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHasIn.js","module":"./node_modules/lodash/_baseHasIn.js","moduleName":"./node_modules/lodash/_baseHasIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHasIn.js","resolvedModule":"./node_modules/lodash/_baseHasIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"13:0-14","moduleId":13,"resolvedModuleId":13},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","module":"./node_modules/lodash/hasIn.js","moduleName":"./node_modules/lodash/hasIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","resolvedModule":"./node_modules/lodash/hasIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseHasIn","loc":"1:16-39","moduleId":9095,"resolvedModuleId":9095}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 13:0-14","Statement (ExpressionStatement) with side effects in source code at 13:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":659,"sizes":{"javascript":659},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","name":"./node_modules/lodash/_baseIndexOf.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","index":384,"preOrderIndex":384,"index2":383,"postOrderIndex":383,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","issuerName":"./node_modules/lodash/includes.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2118,"issuerId":4721,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","module":"./node_modules/lodash/_baseIndexOf.js","moduleName":"./node_modules/lodash/_baseIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","resolvedModule":"./node_modules/lodash/_baseIndexOf.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":2118,"resolvedModuleId":2118},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","module":"./node_modules/lodash/includes.js","moduleName":"./node_modules/lodash/includes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","resolvedModule":"./node_modules/lodash/includes.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIndexOf","loc":"1:18-43","moduleId":4721,"resolvedModuleId":4721}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:48","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":488,"sizes":{"javascript":488},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","name":"./node_modules/lodash/_baseIsArguments.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","index":14,"preOrderIndex":14,"index2":12,"postOrderIndex":12,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","issuerName":"./node_modules/lodash/isArguments.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","name":"./node_modules/lodash/isArguments.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":5694}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9454,"issuerId":5694,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","module":"./node_modules/lodash/_baseIsArguments.js","moduleName":"./node_modules/lodash/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","resolvedModule":"./node_modules/lodash/_baseIsArguments.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":9454,"resolvedModuleId":9454},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","module":"./node_modules/lodash/isArguments.js","moduleName":"./node_modules/lodash/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","resolvedModule":"./node_modules/lodash/isArguments.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsArguments","loc":"1:22-51","moduleId":5694,"resolvedModuleId":5694}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1019,"sizes":{"javascript":1019},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","index":154,"preOrderIndex":154,"index2":162,"postOrderIndex":162,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","issuerName":"./node_modules/lodash/_baseMatchesProperty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432}],"failed":false,"errors":0,"warnings":0,"profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939,"issuerId":6432,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","module":"./node_modules/lodash/_baseIsEqual.js","moduleName":"./node_modules/lodash/_baseIsEqual.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","resolvedModule":"./node_modules/lodash/_baseIsEqual.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"28:0-14","moduleId":939,"resolvedModuleId":939},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","module":"./node_modules/lodash/_baseIsMatch.js","moduleName":"./node_modules/lodash/_baseIsMatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","resolvedModule":"./node_modules/lodash/_baseIsMatch.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsEqual","loc":"2:18-43","moduleId":2958,"resolvedModuleId":2958},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsEqual","loc":"1:18-43","moduleId":6432,"resolvedModuleId":6432}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 28:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3010,"sizes":{"javascript":3010},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","index":155,"preOrderIndex":155,"index2":161,"postOrderIndex":161,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","issuerName":"./node_modules/lodash/_baseIsEqual.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492,"issuerId":939,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","module":"./node_modules/lodash/_baseIsEqual.js","moduleName":"./node_modules/lodash/_baseIsEqual.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","resolvedModule":"./node_modules/lodash/_baseIsEqual.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsEqualDeep","loc":"1:22-51","moduleId":939,"resolvedModuleId":939},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"83:0-14","moduleId":2492,"resolvedModuleId":2492}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 83:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-8:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1765,"sizes":{"javascript":1765},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","index":147,"preOrderIndex":147,"index2":163,"postOrderIndex":163,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","issuerName":"./node_modules/lodash/_baseMatches.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958,"issuerId":1573,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","module":"./node_modules/lodash/_baseIsMatch.js","moduleName":"./node_modules/lodash/_baseIsMatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","resolvedModule":"./node_modules/lodash/_baseIsMatch.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"62:0-14","moduleId":2958,"resolvedModuleId":2958},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","module":"./node_modules/lodash/_baseMatches.js","moduleName":"./node_modules/lodash/_baseMatches.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","resolvedModule":"./node_modules/lodash/_baseMatches.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsMatch","loc":"1:18-43","moduleId":1573,"resolvedModuleId":1573}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 62:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":296,"sizes":{"javascript":296},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNaN.js","name":"./node_modules/lodash/_baseIsNaN.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNaN.js","index":385,"preOrderIndex":385,"index2":381,"postOrderIndex":381,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","issuerName":"./node_modules/lodash/_baseIndexOf.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","name":"./node_modules/lodash/_baseIndexOf.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2118}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2722,"issuerId":2118,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","module":"./node_modules/lodash/_baseIndexOf.js","moduleName":"./node_modules/lodash/_baseIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","resolvedModule":"./node_modules/lodash/_baseIndexOf.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsNaN","loc":"2:16-39","moduleId":2118,"resolvedModuleId":2118},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNaN.js","module":"./node_modules/lodash/_baseIsNaN.js","moduleName":"./node_modules/lodash/_baseIsNaN.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNaN.js","resolvedModule":"./node_modules/lodash/_baseIsNaN.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"12:0-14","moduleId":2722,"resolvedModuleId":2722}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 12:0-14","Statement (ExpressionStatement) with side effects in source code at 12:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1417,"sizes":{"javascript":1417},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","name":"./node_modules/lodash/_baseIsNative.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","index":57,"preOrderIndex":57,"index2":44,"postOrderIndex":44,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","issuerName":"./node_modules/lodash/_getNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8458,"issuerId":852,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"47:0-14","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","module":"./node_modules/lodash/_getNative.js","moduleName":"./node_modules/lodash/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","resolvedModule":"./node_modules/lodash/_getNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsNative","loc":"1:19-45","moduleId":852,"resolvedModuleId":852}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 47:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2222,"sizes":{"javascript":2222},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","name":"./node_modules/lodash/_baseIsTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","index":27,"preOrderIndex":27,"index2":19,"postOrderIndex":19,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","issuerName":"./node_modules/lodash/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","name":"./node_modules/lodash/isTypedArray.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6719}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8749,"issuerId":6719,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","module":"./node_modules/lodash/_baseIsTypedArray.js","moduleName":"./node_modules/lodash/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash/_baseIsTypedArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"60:0-14","moduleId":8749,"resolvedModuleId":8749},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","module":"./node_modules/lodash/isTypedArray.js","moduleName":"./node_modules/lodash/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","resolvedModule":"./node_modules/lodash/isTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsTypedArray","loc":"1:23-53","moduleId":6719,"resolvedModuleId":6719}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 60:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":895,"sizes":{"javascript":895},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","index":145,"preOrderIndex":145,"index2":173,"postOrderIndex":173,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","issuerName":"./node_modules/lodash/_createFind.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206,"issuerId":7740,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"31:0-14","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","module":"./node_modules/lodash/_createFind.js","moduleName":"./node_modules/lodash/_createFind.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","resolvedModule":"./node_modules/lodash/_createFind.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIteratee","loc":"1:19-45","moduleId":7740,"resolvedModuleId":7740},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","module":"./node_modules/lodash/findIndex.js","moduleName":"./node_modules/lodash/findIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","resolvedModule":"./node_modules/lodash/findIndex.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIteratee","loc":"2:19-45","moduleId":998,"resolvedModuleId":998},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","module":"./node_modules/lodash/map.js","moduleName":"./node_modules/lodash/map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","resolvedModule":"./node_modules/lodash/map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIteratee","loc":"2:19-45","moduleId":5161,"resolvedModuleId":5161}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 31:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":776,"sizes":{"javascript":776},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","name":"./node_modules/lodash/_baseKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","index":31,"preOrderIndex":31,"index2":27,"postOrderIndex":27,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":280,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","module":"./node_modules/lodash/_baseKeys.js","moduleName":"./node_modules/lodash/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","resolvedModule":"./node_modules/lodash/_baseKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":280,"resolvedModuleId":280},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseKeys","loc":"1:15-37","moduleId":1609,"resolvedModuleId":1609},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","module":"./node_modules/lodash/keys.js","moduleName":"./node_modules/lodash/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","resolvedModule":"./node_modules/lodash/keys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseKeys","loc":"2:15-37","moduleId":3674,"resolvedModuleId":3674}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":710,"sizes":{"javascript":710},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","index":146,"preOrderIndex":146,"index2":167,"postOrderIndex":167,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","issuerName":"./node_modules/lodash/_baseIteratee.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573,"issuerId":7206,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseMatches","loc":"1:18-43","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","module":"./node_modules/lodash/_baseMatches.js","moduleName":"./node_modules/lodash/_baseMatches.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","resolvedModule":"./node_modules/lodash/_baseMatches.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":1573,"resolvedModuleId":1573}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:68","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1129,"sizes":{"javascript":1129},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","index":180,"preOrderIndex":180,"index2":169,"postOrderIndex":169,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","issuerName":"./node_modules/lodash/_baseIteratee.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432,"issuerId":7206,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseMatchesProperty","loc":"2:26-59","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"33:0-14","moduleId":6432,"resolvedModuleId":6432}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 33:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-7:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":360,"sizes":{"javascript":360},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseProperty.js","name":"./node_modules/lodash/_baseProperty.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseProperty.js","index":183,"preOrderIndex":183,"index2":170,"postOrderIndex":170,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","issuerName":"./node_modules/lodash/property.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","name":"./node_modules/lodash/property.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9601}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":371,"issuerId":9601,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseProperty.js","module":"./node_modules/lodash/_baseProperty.js","moduleName":"./node_modules/lodash/_baseProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseProperty.js","resolvedModule":"./node_modules/lodash/_baseProperty.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":371,"resolvedModuleId":371},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseProperty","loc":"1:19-45","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":391,"sizes":{"javascript":391},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","name":"./node_modules/lodash/_basePropertyDeep.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","index":184,"preOrderIndex":184,"index2":171,"postOrderIndex":171,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","issuerName":"./node_modules/lodash/property.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","name":"./node_modules/lodash/property.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9601}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9152,"issuerId":9601,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","module":"./node_modules/lodash/_basePropertyDeep.js","moduleName":"./node_modules/lodash/_basePropertyDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","resolvedModule":"./node_modules/lodash/_basePropertyDeep.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":9152,"resolvedModuleId":9152},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_basePropertyDeep","loc":"2:23-53","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":504,"sizes":{"javascript":504},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTimes.js","name":"./node_modules/lodash/_baseTimes.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTimes.js","index":12,"preOrderIndex":12,"index2":4,"postOrderIndex":4,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","issuerName":"./node_modules/lodash/_arrayLikeKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","name":"./node_modules/lodash/keys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3674},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","name":"./node_modules/lodash/_arrayLikeKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4636}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2545,"issuerId":4636,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseTimes","loc":"1:16-39","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTimes.js","module":"./node_modules/lodash/_baseTimes.js","moduleName":"./node_modules/lodash/_baseTimes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTimes.js","resolvedModule":"./node_modules/lodash/_baseTimes.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":2545,"resolvedModuleId":2545}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (ExpressionStatement) with side effects in source code at 20:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1154,"sizes":{"javascript":1154},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","name":"./node_modules/lodash/_baseToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","index":82,"preOrderIndex":82,"index2":75,"postOrderIndex":75,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","issuerName":"./node_modules/lodash/toString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","name":"./node_modules/lodash/toString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9833}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":531,"issuerId":9833,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","module":"./node_modules/lodash/toString.js","moduleName":"./node_modules/lodash/toString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","resolvedModule":"./node_modules/lodash/toString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseToString","loc":"1:19-45","moduleId":9833,"resolvedModuleId":9833}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":444,"sizes":{"javascript":444},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","name":"./node_modules/lodash/_baseTrim.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","index":113,"preOrderIndex":113,"index2":110,"postOrderIndex":110,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","issuerName":"./node_modules/lodash/toNumber.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","name":"./node_modules/lodash/toNumber.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":4841}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7561,"issuerId":4841,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","module":"./node_modules/lodash/_baseTrim.js","moduleName":"./node_modules/lodash/_baseTrim.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","resolvedModule":"./node_modules/lodash/_baseTrim.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":7561,"resolvedModuleId":7561},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseTrim","loc":"1:15-37","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-52","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":332,"sizes":{"javascript":332},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseUnary.js","name":"./node_modules/lodash/_baseUnary.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseUnary.js","index":29,"preOrderIndex":29,"index2":20,"postOrderIndex":20,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","issuerName":"./node_modules/lodash/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","name":"./node_modules/lodash/isTypedArray.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6719}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":7518,"issuerId":6719,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseUnary.js","module":"./node_modules/lodash/_baseUnary.js","moduleName":"./node_modules/lodash/_baseUnary.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseUnary.js","resolvedModule":"./node_modules/lodash/_baseUnary.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":7518,"resolvedModuleId":7518},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","module":"./node_modules/lodash/isMap.js","moduleName":"./node_modules/lodash/isMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","resolvedModule":"./node_modules/lodash/isMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseUnary","loc":"2:16-39","moduleId":6688,"resolvedModuleId":6688},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","module":"./node_modules/lodash/isSet.js","moduleName":"./node_modules/lodash/isSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","resolvedModule":"./node_modules/lodash/isSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseUnary","loc":"2:16-39","moduleId":2928,"resolvedModuleId":2928},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","module":"./node_modules/lodash/isTypedArray.js","moduleName":"./node_modules/lodash/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","resolvedModule":"./node_modules/lodash/isTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseUnary","loc":"2:16-39","moduleId":6719,"resolvedModuleId":6719}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":534,"sizes":{"javascript":534},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","name":"./node_modules/lodash/_baseValues.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","index":388,"preOrderIndex":388,"index2":384,"postOrderIndex":384,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","issuerName":"./node_modules/lodash/values.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","name":"./node_modules/lodash/values.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2628}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7415,"issuerId":2628,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","module":"./node_modules/lodash/_baseValues.js","moduleName":"./node_modules/lodash/_baseValues.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","resolvedModule":"./node_modules/lodash/_baseValues.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":7415,"resolvedModuleId":7415},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","module":"./node_modules/lodash/values.js","moduleName":"./node_modules/lodash/values.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","resolvedModule":"./node_modules/lodash/values.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseValues","loc":"1:17-41","moduleId":2628,"resolvedModuleId":2628}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":337,"sizes":{"javascript":337},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cacheHas.js","name":"./node_modules/lodash/_cacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cacheHas.js","index":161,"preOrderIndex":161,"index2":144,"postOrderIndex":144,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","issuerName":"./node_modules/lodash/_equalArrays.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4757,"issuerId":7114,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cacheHas.js","module":"./node_modules/lodash/_cacheHas.js","moduleName":"./node_modules/lodash/_cacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cacheHas.js","resolvedModule":"./node_modules/lodash/_cacheHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"13:0-14","moduleId":4757,"resolvedModuleId":4757},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","module":"./node_modules/lodash/_equalArrays.js","moduleName":"./node_modules/lodash/_equalArrays.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","resolvedModule":"./node_modules/lodash/_equalArrays.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cacheHas","loc":"3:15-37","moduleId":7114,"resolvedModuleId":7114}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 13:0-14","Statement (ExpressionStatement) with side effects in source code at 13:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":326,"sizes":{"javascript":326},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","name":"./node_modules/lodash/_castFunction.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","index":39,"preOrderIndex":39,"index2":36,"postOrderIndex":36,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","issuerName":"./node_modules/lodash/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4290,"issuerId":4486,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","module":"./node_modules/lodash/_castFunction.js","moduleName":"./node_modules/lodash/_castFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","resolvedModule":"./node_modules/lodash/_castFunction.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":4290,"resolvedModuleId":4290},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castFunction","loc":"3:19-45","moduleId":4486,"resolvedModuleId":4486},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","module":"./node_modules/lodash/forOwn.js","moduleName":"./node_modules/lodash/forOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","resolvedModule":"./node_modules/lodash/forOwn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castFunction","loc":"2:19-45","moduleId":2525,"resolvedModuleId":2525}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":569,"sizes":{"javascript":569},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","index":45,"preOrderIndex":45,"index2":77,"postOrderIndex":77,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","issuerName":"./node_modules/lodash/_hasPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811,"issuerId":222,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","module":"./node_modules/lodash/_baseGet.js","moduleName":"./node_modules/lodash/_baseGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","resolvedModule":"./node_modules/lodash/_baseGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castPath","loc":"1:15-37","moduleId":7786,"resolvedModuleId":7786},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","module":"./node_modules/lodash/_basePickBy.js","moduleName":"./node_modules/lodash/_basePickBy.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","resolvedModule":"./node_modules/lodash/_basePickBy.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castPath","loc":"3:15-37","moduleId":3012,"resolvedModuleId":3012},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castPath","loc":"2:15-37","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castPath","loc":"1:15-37","moduleId":222,"resolvedModuleId":222}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":157,"sizes":{"javascript":157},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","name":"./node_modules/lodash/_coreJsData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","index":59,"preOrderIndex":59,"index2":41,"postOrderIndex":41,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","issuerName":"./node_modules/lodash/_isMasked.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","name":"./node_modules/lodash/_baseIsNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8458},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","name":"./node_modules/lodash/_isMasked.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5346}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4429,"issuerId":5346,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","module":"./node_modules/lodash/_coreJsData.js","moduleName":"./node_modules/lodash/_coreJsData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","resolvedModule":"./node_modules/lodash/_coreJsData.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":4429,"resolvedModuleId":4429},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","module":"./node_modules/lodash/_isMasked.js","moduleName":"./node_modules/lodash/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","resolvedModule":"./node_modules/lodash/_isMasked.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_coreJsData","loc":"1:17-41","moduleId":5346,"resolvedModuleId":5346}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":886,"sizes":{"javascript":886},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","name":"./node_modules/lodash/_createBaseEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","index":38,"preOrderIndex":38,"index2":33,"postOrderIndex":33,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","issuerName":"./node_modules/lodash/_baseEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9291,"issuerId":9881,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","module":"./node_modules/lodash/_baseEach.js","moduleName":"./node_modules/lodash/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","resolvedModule":"./node_modules/lodash/_baseEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_createBaseEach","loc":"2:21-49","moduleId":9881,"resolvedModuleId":9881},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","module":"./node_modules/lodash/_createBaseEach.js","moduleName":"./node_modules/lodash/_createBaseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","resolvedModule":"./node_modules/lodash/_createBaseEach.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":9291,"resolvedModuleId":9291}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-43","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":648,"sizes":{"javascript":648},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseFor.js","name":"./node_modules/lodash/_createBaseFor.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseFor.js","index":9,"preOrderIndex":9,"index2":2,"postOrderIndex":2,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","issuerName":"./node_modules/lodash/_baseFor.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","name":"./node_modules/lodash/_baseForOwn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7816},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","name":"./node_modules/lodash/_baseFor.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8483}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5063,"issuerId":8483,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","module":"./node_modules/lodash/_baseFor.js","moduleName":"./node_modules/lodash/_baseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","resolvedModule":"./node_modules/lodash/_baseFor.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_createBaseFor","loc":"1:20-47","moduleId":8483,"resolvedModuleId":8483},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseFor.js","module":"./node_modules/lodash/_createBaseFor.js","moduleName":"./node_modules/lodash/_createBaseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseFor.js","resolvedModule":"./node_modules/lodash/_createBaseFor.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":5063,"resolvedModuleId":5063}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (ExpressionStatement) with side effects in source code at 25:0-31","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":853,"sizes":{"javascript":853},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","index":374,"preOrderIndex":374,"index2":371,"postOrderIndex":371,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","issuerName":"./node_modules/lodash/find.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740,"issuerId":3311,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","module":"./node_modules/lodash/_createFind.js","moduleName":"./node_modules/lodash/_createFind.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","resolvedModule":"./node_modules/lodash/_createFind.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":7740,"resolvedModuleId":7740},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","module":"./node_modules/lodash/find.js","moduleName":"./node_modules/lodash/find.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","resolvedModule":"./node_modules/lodash/find.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_createFind","loc":"1:17-41","moduleId":3311,"resolvedModuleId":3311}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2662,"sizes":{"javascript":2662},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","index":156,"preOrderIndex":156,"index2":145,"postOrderIndex":145,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","issuerName":"./node_modules/lodash/_baseIsEqualDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114,"issuerId":2492,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_equalArrays","loc":"2:18-43","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","module":"./node_modules/lodash/_equalArrays.js","moduleName":"./node_modules/lodash/_equalArrays.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","resolvedModule":"./node_modules/lodash/_equalArrays.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"84:0-14","moduleId":7114,"resolvedModuleId":7114},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_equalArrays","loc":"4:18-43","moduleId":8351,"resolvedModuleId":8351}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 84:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3746,"sizes":{"javascript":3746},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","name":"./node_modules/lodash/_equalByTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","index":162,"preOrderIndex":162,"index2":149,"postOrderIndex":149,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","issuerName":"./node_modules/lodash/_baseIsEqualDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8351,"issuerId":2492,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_equalByTag","loc":"3:17-41","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"112:0-14","moduleId":8351,"resolvedModuleId":8351}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 112:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-6:42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2971,"sizes":{"javascript":2971},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","index":166,"preOrderIndex":166,"index2":155,"postOrderIndex":155,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","issuerName":"./node_modules/lodash/_baseIsEqualDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096,"issuerId":2492,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_equalObjects","loc":"4:19-45","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","module":"./node_modules/lodash/_equalObjects.js","moduleName":"./node_modules/lodash/_equalObjects.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","resolvedModule":"./node_modules/lodash/_equalObjects.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"90:0-14","moduleId":6096,"resolvedModuleId":6096}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 90:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":173,"sizes":{"javascript":173},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_freeGlobal.js","name":"./node_modules/lodash/_freeGlobal.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_freeGlobal.js","index":18,"preOrderIndex":18,"index2":5,"postOrderIndex":5,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","issuerName":"./node_modules/lodash/_root.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","name":"./node_modules/lodash/now.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7771},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","name":"./node_modules/lodash/_root.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":5639}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1957,"issuerId":5639,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_freeGlobal.js","module":"./node_modules/lodash/_freeGlobal.js","moduleName":"./node_modules/lodash/_freeGlobal.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_freeGlobal.js","resolvedModule":"./node_modules/lodash/_freeGlobal.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:0-14","moduleId":1957,"resolvedModuleId":1957},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_freeGlobal","loc":"1:17-41","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","module":"./node_modules/lodash/_root.js","moduleName":"./node_modules/lodash/_root.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","resolvedModule":"./node_modules/lodash/_root.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_freeGlobal","loc":"1:17-41","moduleId":5639,"resolvedModuleId":5639}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 4:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-91","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":455,"sizes":{"javascript":455},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","index":167,"preOrderIndex":167,"index2":154,"postOrderIndex":154,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","issuerName":"./node_modules/lodash/_equalObjects.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234,"issuerId":6096,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getAllKeys","loc":"10:17-41","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","module":"./node_modules/lodash/_equalObjects.js","moduleName":"./node_modules/lodash/_equalObjects.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","resolvedModule":"./node_modules/lodash/_equalObjects.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getAllKeys","loc":"1:17-41","moduleId":6096,"resolvedModuleId":6096},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","module":"./node_modules/lodash/_getAllKeys.js","moduleName":"./node_modules/lodash/_getAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","resolvedModule":"./node_modules/lodash/_getAllKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":8234,"resolvedModuleId":8234}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":400,"sizes":{"javascript":400},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","name":"./node_modules/lodash/_getMapData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","index":76,"preOrderIndex":76,"index2":65,"postOrderIndex":65,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","issuerName":"./node_modules/lodash/_mapCacheGet.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","name":"./node_modules/lodash/_mapCacheGet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6000}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5050,"issuerId":6000,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","module":"./node_modules/lodash/_getMapData.js","moduleName":"./node_modules/lodash/_getMapData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","resolvedModule":"./node_modules/lodash/_getMapData.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":5050,"resolvedModuleId":5050},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","module":"./node_modules/lodash/_mapCacheDelete.js","moduleName":"./node_modules/lodash/_mapCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","resolvedModule":"./node_modules/lodash/_mapCacheDelete.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMapData","loc":"1:17-41","moduleId":1285,"resolvedModuleId":1285},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","module":"./node_modules/lodash/_mapCacheGet.js","moduleName":"./node_modules/lodash/_mapCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","resolvedModule":"./node_modules/lodash/_mapCacheGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMapData","loc":"1:17-41","moduleId":6000,"resolvedModuleId":6000},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","module":"./node_modules/lodash/_mapCacheHas.js","moduleName":"./node_modules/lodash/_mapCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","resolvedModule":"./node_modules/lodash/_mapCacheHas.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMapData","loc":"1:17-41","moduleId":9916,"resolvedModuleId":9916},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","module":"./node_modules/lodash/_mapCacheSet.js","moduleName":"./node_modules/lodash/_mapCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","resolvedModule":"./node_modules/lodash/_mapCacheSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMapData","loc":"1:17-41","moduleId":5265,"resolvedModuleId":5265}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-40","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":573,"sizes":{"javascript":573},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","name":"./node_modules/lodash/_getMatchData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","index":177,"preOrderIndex":177,"index2":165,"postOrderIndex":165,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","issuerName":"./node_modules/lodash/_baseMatches.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1499,"issuerId":1573,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","module":"./node_modules/lodash/_baseMatches.js","moduleName":"./node_modules/lodash/_baseMatches.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","resolvedModule":"./node_modules/lodash/_baseMatches.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMatchData","loc":"2:19-45","moduleId":1573,"resolvedModuleId":1573},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","module":"./node_modules/lodash/_getMatchData.js","moduleName":"./node_modules/lodash/_getMatchData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","resolvedModule":"./node_modules/lodash/_getMatchData.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"24:0-14","moduleId":1499,"resolvedModuleId":1499}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 24:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":483,"sizes":{"javascript":483},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","index":56,"preOrderIndex":56,"index2":46,"postOrderIndex":46,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","issuerName":"./node_modules/lodash/_DataView.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852,"issuerId":8552,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","module":"./node_modules/lodash/_DataView.js","moduleName":"./node_modules/lodash/_DataView.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","resolvedModule":"./node_modules/lodash/_DataView.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":8552,"resolvedModuleId":8552},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","module":"./node_modules/lodash/_Map.js","moduleName":"./node_modules/lodash/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","resolvedModule":"./node_modules/lodash/_Map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":7071,"resolvedModuleId":7071},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","module":"./node_modules/lodash/_Promise.js","moduleName":"./node_modules/lodash/_Promise.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","resolvedModule":"./node_modules/lodash/_Promise.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":3818,"resolvedModuleId":3818},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","module":"./node_modules/lodash/_Set.js","moduleName":"./node_modules/lodash/_Set.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","resolvedModule":"./node_modules/lodash/_Set.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":8525,"resolvedModuleId":8525},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","module":"./node_modules/lodash/_WeakMap.js","moduleName":"./node_modules/lodash/_WeakMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","resolvedModule":"./node_modules/lodash/_WeakMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":577,"resolvedModuleId":577},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_defineProperty.js","module":"./node_modules/lodash/_defineProperty.js","moduleName":"./node_modules/lodash/_defineProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_defineProperty.js","resolvedModule":"./node_modules/lodash/_defineProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":8777,"resolvedModuleId":8777},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","module":"./node_modules/lodash/_getNative.js","moduleName":"./node_modules/lodash/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","resolvedModule":"./node_modules/lodash/_getNative.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"17:0-14","moduleId":852,"resolvedModuleId":852},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","module":"./node_modules/lodash/_nativeCreate.js","moduleName":"./node_modules/lodash/_nativeCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","resolvedModule":"./node_modules/lodash/_nativeCreate.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":4536,"resolvedModuleId":4536}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 17:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1139,"sizes":{"javascript":1139},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","name":"./node_modules/lodash/_getRawTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","index":19,"preOrderIndex":19,"index2":8,"postOrderIndex":8,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","issuerName":"./node_modules/lodash/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","name":"./node_modules/lodash/_baseGetTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4239}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9607,"issuerId":4239,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","module":"./node_modules/lodash/_baseGetTag.js","moduleName":"./node_modules/lodash/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","resolvedModule":"./node_modules/lodash/_baseGetTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getRawTag","loc":"2:16-39","moduleId":4239,"resolvedModuleId":4239},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","module":"./node_modules/lodash/_getRawTag.js","moduleName":"./node_modules/lodash/_getRawTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","resolvedModule":"./node_modules/lodash/_getRawTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"46:0-14","moduleId":9607,"resolvedModuleId":9607}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 46:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-34","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":886,"sizes":{"javascript":886},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","name":"./node_modules/lodash/_getSymbols.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","index":169,"preOrderIndex":169,"index2":153,"postOrderIndex":153,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","issuerName":"./node_modules/lodash/_getAllKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9551,"issuerId":8234,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","module":"./node_modules/lodash/_copySymbols.js","moduleName":"./node_modules/lodash/_copySymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","resolvedModule":"./node_modules/lodash/_copySymbols.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getSymbols","loc":"2:17-41","moduleId":8805,"resolvedModuleId":8805},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","module":"./node_modules/lodash/_getAllKeys.js","moduleName":"./node_modules/lodash/_getAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","resolvedModule":"./node_modules/lodash/_getAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getSymbols","loc":"2:17-41","moduleId":8234,"resolvedModuleId":8234},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","module":"./node_modules/lodash/_getSymbols.js","moduleName":"./node_modules/lodash/_getSymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","resolvedModule":"./node_modules/lodash/_getSymbols.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":9551,"resolvedModuleId":9551},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","module":"./node_modules/lodash/_getSymbolsIn.js","moduleName":"./node_modules/lodash/_getSymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","resolvedModule":"./node_modules/lodash/_getSymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getSymbols","loc":"3:17-41","moduleId":1442,"resolvedModuleId":1442}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:39","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1838,"sizes":{"javascript":1838},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","index":172,"preOrderIndex":172,"index2":160,"postOrderIndex":160,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"12:13-33","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"5:13-33","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","module":"./node_modules/lodash/_baseIsMap.js","moduleName":"./node_modules/lodash/_baseIsMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","resolvedModule":"./node_modules/lodash/_baseIsMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"1:13-33","moduleId":5588,"resolvedModuleId":5588},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","module":"./node_modules/lodash/_baseIsSet.js","moduleName":"./node_modules/lodash/_baseIsSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","resolvedModule":"./node_modules/lodash/_baseIsSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"1:13-33","moduleId":9221,"resolvedModuleId":9221},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"58:0-14","moduleId":4160,"resolvedModuleId":4160},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"2:13-33","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 58:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-7:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":325,"sizes":{"javascript":325},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getValue.js","name":"./node_modules/lodash/_getValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getValue.js","index":61,"preOrderIndex":61,"index2":45,"postOrderIndex":45,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","issuerName":"./node_modules/lodash/_getNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7801,"issuerId":852,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","module":"./node_modules/lodash/_getNative.js","moduleName":"./node_modules/lodash/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","resolvedModule":"./node_modules/lodash/_getNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getValue","loc":"2:15-37","moduleId":852,"resolvedModuleId":852},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getValue.js","module":"./node_modules/lodash/_getValue.js","moduleName":"./node_modules/lodash/_getValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getValue.js","resolvedModule":"./node_modules/lodash/_getValue.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"13:0-14","moduleId":7801,"resolvedModuleId":7801}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 13:0-14","Statement (ExpressionStatement) with side effects in source code at 13:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1085,"sizes":{"javascript":1085},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","index":91,"preOrderIndex":91,"index2":86,"postOrderIndex":86,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","issuerName":"./node_modules/lodash/has.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222,"issuerId":8721,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"39:0-14","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","module":"./node_modules/lodash/has.js","moduleName":"./node_modules/lodash/has.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","resolvedModule":"./node_modules/lodash/has.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hasPath","loc":"2:14-35","moduleId":8721,"resolvedModuleId":8721},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","module":"./node_modules/lodash/hasIn.js","moduleName":"./node_modules/lodash/hasIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","resolvedModule":"./node_modules/lodash/hasIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hasPath","loc":"2:14-35","moduleId":9095,"resolvedModuleId":9095}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 39:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-6:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":281,"sizes":{"javascript":281},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","name":"./node_modules/lodash/_hashClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","index":54,"preOrderIndex":54,"index2":48,"postOrderIndex":48,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1789,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashClear","loc":"1:16-39","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","module":"./node_modules/lodash/_hashClear.js","moduleName":"./node_modules/lodash/_hashClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","resolvedModule":"./node_modules/lodash/_hashClear.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":1789,"resolvedModuleId":1789}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":445,"sizes":{"javascript":445},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashDelete.js","name":"./node_modules/lodash/_hashDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashDelete.js","index":62,"preOrderIndex":62,"index2":49,"postOrderIndex":49,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":401,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashDelete","loc":"2:17-41","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashDelete.js","module":"./node_modules/lodash/_hashDelete.js","moduleName":"./node_modules/lodash/_hashDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashDelete.js","resolvedModule":"./node_modules/lodash/_hashDelete.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"17:0-14","moduleId":401,"resolvedModuleId":401}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 17:0-14","Statement (ExpressionStatement) with side effects in source code at 17:0-28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":772,"sizes":{"javascript":772},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","name":"./node_modules/lodash/_hashGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","index":63,"preOrderIndex":63,"index2":50,"postOrderIndex":50,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7667,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashGet","loc":"3:14-35","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","module":"./node_modules/lodash/_hashGet.js","moduleName":"./node_modules/lodash/_hashGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","resolvedModule":"./node_modules/lodash/_hashGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":7667,"resolvedModuleId":7667}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":626,"sizes":{"javascript":626},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","name":"./node_modules/lodash/_hashHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","index":64,"preOrderIndex":64,"index2":51,"postOrderIndex":51,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1327,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashHas","loc":"4:14-35","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","module":"./node_modules/lodash/_hashHas.js","moduleName":"./node_modules/lodash/_hashHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","resolvedModule":"./node_modules/lodash/_hashHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":1327,"resolvedModuleId":1327}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":598,"sizes":{"javascript":598},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","name":"./node_modules/lodash/_hashSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","index":65,"preOrderIndex":65,"index2":52,"postOrderIndex":52,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1866,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashSet","loc":"5:14-35","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","module":"./node_modules/lodash/_hashSet.js","moduleName":"./node_modules/lodash/_hashSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","resolvedModule":"./node_modules/lodash/_hashSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":1866,"resolvedModuleId":1866}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":759,"sizes":{"javascript":759},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isIndex.js","name":"./node_modules/lodash/_isIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isIndex.js","index":25,"preOrderIndex":25,"index2":17,"postOrderIndex":17,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","issuerName":"./node_modules/lodash/_hasPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":5776,"issuerId":222,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isIndex","loc":"5:14-35","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isIndex","loc":"3:14-35","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isIndex","loc":"4:14-35","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isIndex.js","module":"./node_modules/lodash/_isIndex.js","moduleName":"./node_modules/lodash/_isIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isIndex.js","resolvedModule":"./node_modules/lodash/_isIndex.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":5776,"resolvedModuleId":5776}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (ExpressionStatement) with side effects in source code at 25:0-25","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":880,"sizes":{"javascript":880},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","name":"./node_modules/lodash/_isKey.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","index":46,"preOrderIndex":46,"index2":40,"postOrderIndex":40,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","issuerName":"./node_modules/lodash/_castPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":5403,"issuerId":1811,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isKey","loc":"4:12-31","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isKey","loc":"2:12-31","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","module":"./node_modules/lodash/_isKey.js","moduleName":"./node_modules/lodash/_isKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","resolvedModule":"./node_modules/lodash/_isKey.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"29:0-14","moduleId":5403,"resolvedModuleId":5403},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isKey","loc":"3:12-31","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 29:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":430,"sizes":{"javascript":430},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKeyable.js","name":"./node_modules/lodash/_isKeyable.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKeyable.js","index":77,"preOrderIndex":77,"index2":64,"postOrderIndex":64,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","issuerName":"./node_modules/lodash/_getMapData.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","name":"./node_modules/lodash/_mapCacheGet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6000},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","name":"./node_modules/lodash/_getMapData.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5050}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7019,"issuerId":5050,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","module":"./node_modules/lodash/_getMapData.js","moduleName":"./node_modules/lodash/_getMapData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","resolvedModule":"./node_modules/lodash/_getMapData.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isKeyable","loc":"1:16-39","moduleId":5050,"resolvedModuleId":5050},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKeyable.js","module":"./node_modules/lodash/_isKeyable.js","moduleName":"./node_modules/lodash/_isKeyable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKeyable.js","resolvedModule":"./node_modules/lodash/_isKeyable.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":7019,"resolvedModuleId":7019}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (ExpressionStatement) with side effects in source code at 15:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":564,"sizes":{"javascript":564},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","name":"./node_modules/lodash/_isMasked.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","index":58,"preOrderIndex":58,"index2":42,"postOrderIndex":42,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","issuerName":"./node_modules/lodash/_baseIsNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","name":"./node_modules/lodash/_baseIsNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8458}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5346,"issuerId":8458,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isMasked","loc":"2:15-37","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","module":"./node_modules/lodash/_isMasked.js","moduleName":"./node_modules/lodash/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","resolvedModule":"./node_modules/lodash/_isMasked.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":5346,"resolvedModuleId":5346}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":480,"sizes":{"javascript":480},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isPrototype.js","name":"./node_modules/lodash/_isPrototype.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isPrototype.js","index":32,"preOrderIndex":32,"index2":24,"postOrderIndex":24,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":5726,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","module":"./node_modules/lodash/_baseKeys.js","moduleName":"./node_modules/lodash/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","resolvedModule":"./node_modules/lodash/_baseKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isPrototype","loc":"1:18-43","moduleId":280,"resolvedModuleId":280},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","module":"./node_modules/lodash/_baseKeysIn.js","moduleName":"./node_modules/lodash/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","resolvedModule":"./node_modules/lodash/_baseKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isPrototype","loc":"2:18-43","moduleId":313,"resolvedModuleId":313},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","module":"./node_modules/lodash/_initCloneObject.js","moduleName":"./node_modules/lodash/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","resolvedModule":"./node_modules/lodash/_initCloneObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isPrototype","loc":"3:18-43","moduleId":8517,"resolvedModuleId":8517},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isPrototype.js","module":"./node_modules/lodash/_isPrototype.js","moduleName":"./node_modules/lodash/_isPrototype.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isPrototype.js","resolvedModule":"./node_modules/lodash/_isPrototype.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":5726,"resolvedModuleId":5726},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isPrototype","loc":"7:18-43","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":414,"sizes":{"javascript":414},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","name":"./node_modules/lodash/_isStrictComparable.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","index":178,"preOrderIndex":178,"index2":164,"postOrderIndex":164,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","issuerName":"./node_modules/lodash/_baseMatchesProperty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":5,"additionalIntegration":0,"factory":0,"dependencies":5},"id":9162,"issuerId":6432,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isStrictComparable","loc":"5:25-57","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","module":"./node_modules/lodash/_getMatchData.js","moduleName":"./node_modules/lodash/_getMatchData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","resolvedModule":"./node_modules/lodash/_getMatchData.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isStrictComparable","loc":"1:25-57","moduleId":1499,"resolvedModuleId":1499},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","module":"./node_modules/lodash/_isStrictComparable.js","moduleName":"./node_modules/lodash/_isStrictComparable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","resolvedModule":"./node_modules/lodash/_isStrictComparable.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":9162,"resolvedModuleId":9162}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":218,"sizes":{"javascript":218},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheClear.js","name":"./node_modules/lodash/_listCacheClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheClear.js","index":67,"preOrderIndex":67,"index2":54,"postOrderIndex":54,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7040,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheClear","loc":"1:21-49","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheClear.js","module":"./node_modules/lodash/_listCacheClear.js","moduleName":"./node_modules/lodash/_listCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheClear.js","resolvedModule":"./node_modules/lodash/_listCacheClear.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"13:0-14","moduleId":7040,"resolvedModuleId":7040}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 13:0-14","Statement (ExpressionStatement) with side effects in source code at 13:0-32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":775,"sizes":{"javascript":775},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","name":"./node_modules/lodash/_listCacheDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","index":68,"preOrderIndex":68,"index2":57,"postOrderIndex":57,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4125,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheDelete","loc":"2:22-51","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","module":"./node_modules/lodash/_listCacheDelete.js","moduleName":"./node_modules/lodash/_listCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","resolvedModule":"./node_modules/lodash/_listCacheDelete.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"35:0-14","moduleId":4125,"resolvedModuleId":4125}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 35:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":420,"sizes":{"javascript":420},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","name":"./node_modules/lodash/_listCacheGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","index":71,"preOrderIndex":71,"index2":58,"postOrderIndex":58,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2117,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheGet","loc":"3:19-45","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","module":"./node_modules/lodash/_listCacheGet.js","moduleName":"./node_modules/lodash/_listCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","resolvedModule":"./node_modules/lodash/_listCacheGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":2117,"resolvedModuleId":2117}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":403,"sizes":{"javascript":403},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","name":"./node_modules/lodash/_listCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","index":72,"preOrderIndex":72,"index2":59,"postOrderIndex":59,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7529,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheHas","loc":"4:19-45","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","module":"./node_modules/lodash/_listCacheHas.js","moduleName":"./node_modules/lodash/_listCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","resolvedModule":"./node_modules/lodash/_listCacheHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":7529,"resolvedModuleId":7529}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":553,"sizes":{"javascript":553},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","name":"./node_modules/lodash/_listCacheSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","index":73,"preOrderIndex":73,"index2":60,"postOrderIndex":60,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4705,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheSet","loc":"5:19-45","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","module":"./node_modules/lodash/_listCacheSet.js","moduleName":"./node_modules/lodash/_listCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","resolvedModule":"./node_modules/lodash/_listCacheSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":4705,"resolvedModuleId":4705}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":393,"sizes":{"javascript":393},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","index":52,"preOrderIndex":52,"index2":63,"postOrderIndex":63,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheClear","loc":"1:20-47","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","module":"./node_modules/lodash/_mapCacheClear.js","moduleName":"./node_modules/lodash/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","resolvedModule":"./node_modules/lodash/_mapCacheClear.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":4785,"resolvedModuleId":4785}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":450,"sizes":{"javascript":450},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","name":"./node_modules/lodash/_mapCacheDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","index":75,"preOrderIndex":75,"index2":66,"postOrderIndex":66,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1285,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheDelete","loc":"2:21-49","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","module":"./node_modules/lodash/_mapCacheDelete.js","moduleName":"./node_modules/lodash/_mapCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","resolvedModule":"./node_modules/lodash/_mapCacheDelete.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":1285,"resolvedModuleId":1285}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":330,"sizes":{"javascript":330},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","name":"./node_modules/lodash/_mapCacheGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","index":78,"preOrderIndex":78,"index2":67,"postOrderIndex":67,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6000,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheGet","loc":"3:18-43","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","module":"./node_modules/lodash/_mapCacheGet.js","moduleName":"./node_modules/lodash/_mapCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","resolvedModule":"./node_modules/lodash/_mapCacheGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":6000,"resolvedModuleId":6000}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":382,"sizes":{"javascript":382},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","name":"./node_modules/lodash/_mapCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","index":79,"preOrderIndex":79,"index2":68,"postOrderIndex":68,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9916,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheHas","loc":"4:18-43","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","module":"./node_modules/lodash/_mapCacheHas.js","moduleName":"./node_modules/lodash/_mapCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","resolvedModule":"./node_modules/lodash/_mapCacheHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":9916,"resolvedModuleId":9916}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":489,"sizes":{"javascript":489},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","name":"./node_modules/lodash/_mapCacheSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","index":80,"preOrderIndex":80,"index2":69,"postOrderIndex":69,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5265,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheSet","loc":"5:18-43","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","module":"./node_modules/lodash/_mapCacheSet.js","moduleName":"./node_modules/lodash/_mapCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","resolvedModule":"./node_modules/lodash/_mapCacheSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":5265,"resolvedModuleId":5265}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":363,"sizes":{"javascript":363},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapToArray.js","name":"./node_modules/lodash/_mapToArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapToArray.js","index":164,"preOrderIndex":164,"index2":147,"postOrderIndex":147,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","issuerName":"./node_modules/lodash/_equalByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","name":"./node_modules/lodash/_equalByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8351}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8776,"issuerId":8351,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapToArray","loc":"5:17-41","moduleId":8351,"resolvedModuleId":8351},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapToArray.js","module":"./node_modules/lodash/_mapToArray.js","moduleName":"./node_modules/lodash/_mapToArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapToArray.js","resolvedModule":"./node_modules/lodash/_mapToArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":8776,"resolvedModuleId":8776}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (ExpressionStatement) with side effects in source code at 18:0-28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":574,"sizes":{"javascript":574},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_matchesStrictComparable.js","name":"./node_modules/lodash/_matchesStrictComparable.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_matchesStrictComparable.js","index":179,"preOrderIndex":179,"index2":166,"postOrderIndex":166,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","issuerName":"./node_modules/lodash/_baseMatches.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2634,"issuerId":1573,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","module":"./node_modules/lodash/_baseMatches.js","moduleName":"./node_modules/lodash/_baseMatches.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","resolvedModule":"./node_modules/lodash/_baseMatches.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_matchesStrictComparable","loc":"3:30-67","moduleId":1573,"resolvedModuleId":1573},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_matchesStrictComparable","loc":"6:30-67","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_matchesStrictComparable.js","module":"./node_modules/lodash/_matchesStrictComparable.js","moduleName":"./node_modules/lodash/_matchesStrictComparable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_matchesStrictComparable.js","resolvedModule":"./node_modules/lodash/_matchesStrictComparable.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":2634,"resolvedModuleId":2634}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (ExpressionStatement) with side effects in source code at 20:0-41","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":633,"sizes":{"javascript":633},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","index":49,"preOrderIndex":49,"index2":72,"postOrderIndex":72,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","issuerName":"./node_modules/lodash/_stringToPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523,"issuerId":5514,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","module":"./node_modules/lodash/_memoizeCapped.js","moduleName":"./node_modules/lodash/_memoizeCapped.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","resolvedModule":"./node_modules/lodash/_memoizeCapped.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":4523,"resolvedModuleId":4523},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","module":"./node_modules/lodash/_stringToPath.js","moduleName":"./node_modules/lodash/_stringToPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","resolvedModule":"./node_modules/lodash/_stringToPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_memoizeCapped","loc":"1:20-47","moduleId":5514,"resolvedModuleId":5514}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":187,"sizes":{"javascript":187},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","name":"./node_modules/lodash/_nativeCreate.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","index":55,"preOrderIndex":55,"index2":47,"postOrderIndex":47,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","issuerName":"./node_modules/lodash/_hashHas.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","name":"./node_modules/lodash/_hashHas.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1327}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4536,"issuerId":1327,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","module":"./node_modules/lodash/_hashClear.js","moduleName":"./node_modules/lodash/_hashClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","resolvedModule":"./node_modules/lodash/_hashClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeCreate","loc":"1:19-45","moduleId":1789,"resolvedModuleId":1789},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","module":"./node_modules/lodash/_hashGet.js","moduleName":"./node_modules/lodash/_hashGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","resolvedModule":"./node_modules/lodash/_hashGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeCreate","loc":"1:19-45","moduleId":7667,"resolvedModuleId":7667},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","module":"./node_modules/lodash/_hashHas.js","moduleName":"./node_modules/lodash/_hashHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","resolvedModule":"./node_modules/lodash/_hashHas.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeCreate","loc":"1:19-45","moduleId":1327,"resolvedModuleId":1327},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","module":"./node_modules/lodash/_hashSet.js","moduleName":"./node_modules/lodash/_hashSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","resolvedModule":"./node_modules/lodash/_hashSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeCreate","loc":"1:19-45","moduleId":1866,"resolvedModuleId":1866},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","module":"./node_modules/lodash/_nativeCreate.js","moduleName":"./node_modules/lodash/_nativeCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","resolvedModule":"./node_modules/lodash/_nativeCreate.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":4536,"resolvedModuleId":4536}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-40","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":12},{"type":"module","moduleType":"javascript/auto","layer":null,"size":204,"sizes":{"javascript":204},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","name":"./node_modules/lodash/_nativeKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","index":33,"preOrderIndex":33,"index2":26,"postOrderIndex":26,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","issuerName":"./node_modules/lodash/_baseKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","name":"./node_modules/lodash/_baseKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":280}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6916,"issuerId":280,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","module":"./node_modules/lodash/_baseKeys.js","moduleName":"./node_modules/lodash/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","resolvedModule":"./node_modules/lodash/_baseKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeKeys","loc":"2:17-41","moduleId":280,"resolvedModuleId":280},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","module":"./node_modules/lodash/_nativeKeys.js","moduleName":"./node_modules/lodash/_nativeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","resolvedModule":"./node_modules/lodash/_nativeKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":6916,"resolvedModuleId":6916}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":995,"sizes":{"javascript":995},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","name":"./node_modules/lodash/_nodeUtil.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","index":30,"preOrderIndex":30,"index2":21,"postOrderIndex":21,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","issuerName":"./node_modules/lodash/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","name":"./node_modules/lodash/isTypedArray.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6719}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":1167,"issuerId":6719,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:48-55","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:60-76","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:80-87","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:61-67","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:72-78","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:91-97","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","module":"./node_modules/lodash/isMap.js","moduleName":"./node_modules/lodash/isMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","resolvedModule":"./node_modules/lodash/isMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nodeUtil","loc":"3:15-37","moduleId":6688,"resolvedModuleId":6688},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","module":"./node_modules/lodash/isSet.js","moduleName":"./node_modules/lodash/isSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","resolvedModule":"./node_modules/lodash/isSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nodeUtil","loc":"3:15-37","moduleId":2928,"resolvedModuleId":2928},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","module":"./node_modules/lodash/isTypedArray.js","moduleName":"./node_modules/lodash/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","resolvedModule":"./node_modules/lodash/isTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nodeUtil","loc":"3:15-37","moduleId":6719,"resolvedModuleId":6719}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: exports is used directly at 4:48-55","CommonJS bailout: exports is used directly at 4:80-87","CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":565,"sizes":{"javascript":565},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_objectToString.js","name":"./node_modules/lodash/_objectToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_objectToString.js","index":20,"preOrderIndex":20,"index2":9,"postOrderIndex":9,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","issuerName":"./node_modules/lodash/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","name":"./node_modules/lodash/_baseGetTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4239}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2333,"issuerId":4239,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","module":"./node_modules/lodash/_baseGetTag.js","moduleName":"./node_modules/lodash/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","resolvedModule":"./node_modules/lodash/_baseGetTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_objectToString","loc":"3:21-49","moduleId":4239,"resolvedModuleId":4239},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_objectToString.js","module":"./node_modules/lodash/_objectToString.js","moduleName":"./node_modules/lodash/_objectToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_objectToString.js","resolvedModule":"./node_modules/lodash/_objectToString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":2333,"resolvedModuleId":2333}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":382,"sizes":{"javascript":382},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overArg.js","name":"./node_modules/lodash/_overArg.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overArg.js","index":34,"preOrderIndex":34,"index2":25,"postOrderIndex":25,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","issuerName":"./node_modules/lodash/_nativeKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","name":"./node_modules/lodash/_baseKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":280},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","name":"./node_modules/lodash/_nativeKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6916}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":5569,"issuerId":6916,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getPrototype.js","module":"./node_modules/lodash/_getPrototype.js","moduleName":"./node_modules/lodash/_getPrototype.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getPrototype.js","resolvedModule":"./node_modules/lodash/_getPrototype.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_overArg","loc":"1:14-35","moduleId":5924,"resolvedModuleId":5924},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","module":"./node_modules/lodash/_nativeKeys.js","moduleName":"./node_modules/lodash/_nativeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","resolvedModule":"./node_modules/lodash/_nativeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_overArg","loc":"1:14-35","moduleId":6916,"resolvedModuleId":6916},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overArg.js","module":"./node_modules/lodash/_overArg.js","moduleName":"./node_modules/lodash/_overArg.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overArg.js","resolvedModule":"./node_modules/lodash/_overArg.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":5569,"resolvedModuleId":5569}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (ExpressionStatement) with side effects in source code at 15:0-25","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":300,"sizes":{"javascript":300},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","name":"./node_modules/lodash/_root.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","index":17,"preOrderIndex":17,"index2":6,"postOrderIndex":6,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","issuerName":"./node_modules/lodash/now.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","name":"./node_modules/lodash/now.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7771}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":5639,"issuerId":7771,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","module":"./node_modules/lodash/_DataView.js","moduleName":"./node_modules/lodash/_DataView.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","resolvedModule":"./node_modules/lodash/_DataView.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":8552,"resolvedModuleId":8552},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","module":"./node_modules/lodash/_Map.js","moduleName":"./node_modules/lodash/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","resolvedModule":"./node_modules/lodash/_Map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":7071,"resolvedModuleId":7071},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","module":"./node_modules/lodash/_Promise.js","moduleName":"./node_modules/lodash/_Promise.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","resolvedModule":"./node_modules/lodash/_Promise.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":3818,"resolvedModuleId":3818},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","module":"./node_modules/lodash/_Set.js","moduleName":"./node_modules/lodash/_Set.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","resolvedModule":"./node_modules/lodash/_Set.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":8525,"resolvedModuleId":8525},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","module":"./node_modules/lodash/_Symbol.js","moduleName":"./node_modules/lodash/_Symbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","resolvedModule":"./node_modules/lodash/_Symbol.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":2705,"resolvedModuleId":2705},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","module":"./node_modules/lodash/_Uint8Array.js","moduleName":"./node_modules/lodash/_Uint8Array.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","resolvedModule":"./node_modules/lodash/_Uint8Array.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":1149,"resolvedModuleId":1149},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","module":"./node_modules/lodash/_WeakMap.js","moduleName":"./node_modules/lodash/_WeakMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","resolvedModule":"./node_modules/lodash/_WeakMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":577,"resolvedModuleId":577},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":4626,"resolvedModuleId":4626},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","module":"./node_modules/lodash/_coreJsData.js","moduleName":"./node_modules/lodash/_coreJsData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","resolvedModule":"./node_modules/lodash/_coreJsData.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":4429,"resolvedModuleId":4429},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","module":"./node_modules/lodash/_root.js","moduleName":"./node_modules/lodash/_root.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","resolvedModule":"./node_modules/lodash/_root.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"9:0-14","moduleId":5639,"resolvedModuleId":5639},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","module":"./node_modules/lodash/now.js","moduleName":"./node_modules/lodash/now.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","resolvedModule":"./node_modules/lodash/now.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":7771,"resolvedModuleId":7771}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 9:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":424,"sizes":{"javascript":424},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheAdd.js","name":"./node_modules/lodash/_setCacheAdd.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheAdd.js","index":158,"preOrderIndex":158,"index2":140,"postOrderIndex":140,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","issuerName":"./node_modules/lodash/_SetCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","name":"./node_modules/lodash/_SetCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8668}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":619,"issuerId":8668,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","module":"./node_modules/lodash/_SetCache.js","moduleName":"./node_modules/lodash/_SetCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","resolvedModule":"./node_modules/lodash/_SetCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_setCacheAdd","loc":"2:18-43","moduleId":8668,"resolvedModuleId":8668},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheAdd.js","module":"./node_modules/lodash/_setCacheAdd.js","moduleName":"./node_modules/lodash/_setCacheAdd.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheAdd.js","resolvedModule":"./node_modules/lodash/_setCacheAdd.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":619,"resolvedModuleId":619}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (ExpressionStatement) with side effects in source code at 19:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":316,"sizes":{"javascript":316},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheHas.js","name":"./node_modules/lodash/_setCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheHas.js","index":159,"preOrderIndex":159,"index2":141,"postOrderIndex":141,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","issuerName":"./node_modules/lodash/_SetCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","name":"./node_modules/lodash/_SetCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8668}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2385,"issuerId":8668,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","module":"./node_modules/lodash/_SetCache.js","moduleName":"./node_modules/lodash/_SetCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","resolvedModule":"./node_modules/lodash/_SetCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_setCacheHas","loc":"3:18-43","moduleId":8668,"resolvedModuleId":8668},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheHas.js","module":"./node_modules/lodash/_setCacheHas.js","moduleName":"./node_modules/lodash/_setCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheHas.js","resolvedModule":"./node_modules/lodash/_setCacheHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":2385,"resolvedModuleId":2385}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":345,"sizes":{"javascript":345},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToArray.js","name":"./node_modules/lodash/_setToArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToArray.js","index":165,"preOrderIndex":165,"index2":148,"postOrderIndex":148,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","issuerName":"./node_modules/lodash/_equalByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","name":"./node_modules/lodash/_equalByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8351}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1814,"issuerId":8351,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_setToArray","loc":"6:17-41","moduleId":8351,"resolvedModuleId":8351},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToArray.js","module":"./node_modules/lodash/_setToArray.js","moduleName":"./node_modules/lodash/_setToArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToArray.js","resolvedModule":"./node_modules/lodash/_setToArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":1814,"resolvedModuleId":1814}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (ExpressionStatement) with side effects in source code at 18:0-28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":254,"sizes":{"javascript":254},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","name":"./node_modules/lodash/_stackClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","index":149,"preOrderIndex":149,"index2":134,"postOrderIndex":134,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7465,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackClear","loc":"2:17-41","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","module":"./node_modules/lodash/_stackClear.js","moduleName":"./node_modules/lodash/_stackClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","resolvedModule":"./node_modules/lodash/_stackClear.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":7465,"resolvedModuleId":7465}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-40","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":405,"sizes":{"javascript":405},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackDelete.js","name":"./node_modules/lodash/_stackDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackDelete.js","index":150,"preOrderIndex":150,"index2":135,"postOrderIndex":135,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3779,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackDelete","loc":"3:18-43","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackDelete.js","module":"./node_modules/lodash/_stackDelete.js","moduleName":"./node_modules/lodash/_stackDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackDelete.js","resolvedModule":"./node_modules/lodash/_stackDelete.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":3779,"resolvedModuleId":3779}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (ExpressionStatement) with side effects in source code at 18:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":271,"sizes":{"javascript":271},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackGet.js","name":"./node_modules/lodash/_stackGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackGet.js","index":151,"preOrderIndex":151,"index2":136,"postOrderIndex":136,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7599,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackGet","loc":"4:15-37","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackGet.js","module":"./node_modules/lodash/_stackGet.js","moduleName":"./node_modules/lodash/_stackGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackGet.js","resolvedModule":"./node_modules/lodash/_stackGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":7599,"resolvedModuleId":7599}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":323,"sizes":{"javascript":323},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackHas.js","name":"./node_modules/lodash/_stackHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackHas.js","index":152,"preOrderIndex":152,"index2":137,"postOrderIndex":137,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4758,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackHas","loc":"5:15-37","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackHas.js","module":"./node_modules/lodash/_stackHas.js","moduleName":"./node_modules/lodash/_stackHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackHas.js","resolvedModule":"./node_modules/lodash/_stackHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":4758,"resolvedModuleId":4758}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":853,"sizes":{"javascript":853},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","name":"./node_modules/lodash/_stackSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","index":153,"preOrderIndex":153,"index2":138,"postOrderIndex":138,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4309,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackSet","loc":"6:15-37","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","module":"./node_modules/lodash/_stackSet.js","moduleName":"./node_modules/lodash/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","resolvedModule":"./node_modules/lodash/_stackSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"34:0-14","moduleId":4309,"resolvedModuleId":4309}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 34:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":600,"sizes":{"javascript":600},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_strictIndexOf.js","name":"./node_modules/lodash/_strictIndexOf.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_strictIndexOf.js","index":386,"preOrderIndex":386,"index2":382,"postOrderIndex":382,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","issuerName":"./node_modules/lodash/_baseIndexOf.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","name":"./node_modules/lodash/_baseIndexOf.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2118}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2351,"issuerId":2118,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","module":"./node_modules/lodash/_baseIndexOf.js","moduleName":"./node_modules/lodash/_baseIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIndexOf.js","resolvedModule":"./node_modules/lodash/_baseIndexOf.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_strictIndexOf","loc":"3:20-47","moduleId":2118,"resolvedModuleId":2118},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_strictIndexOf.js","module":"./node_modules/lodash/_strictIndexOf.js","moduleName":"./node_modules/lodash/_strictIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_strictIndexOf.js","resolvedModule":"./node_modules/lodash/_strictIndexOf.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":2351,"resolvedModuleId":2351}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (ExpressionStatement) with side effects in source code at 23:0-31","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":840,"sizes":{"javascript":840},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","index":48,"preOrderIndex":48,"index2":73,"postOrderIndex":73,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","issuerName":"./node_modules/lodash/_castPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514,"issuerId":1811,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stringToPath","loc":"3:19-45","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","module":"./node_modules/lodash/_stringToPath.js","moduleName":"./node_modules/lodash/_stringToPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","resolvedModule":"./node_modules/lodash/_stringToPath.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":5514,"resolvedModuleId":5514}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-48","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":523,"sizes":{"javascript":523},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","name":"./node_modules/lodash/_toKey.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","index":84,"preOrderIndex":84,"index2":78,"postOrderIndex":78,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","issuerName":"./node_modules/lodash/_hasPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":327,"issuerId":222,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","module":"./node_modules/lodash/_baseGet.js","moduleName":"./node_modules/lodash/_baseGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","resolvedModule":"./node_modules/lodash/_baseGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"2:12-31","moduleId":7786,"resolvedModuleId":7786},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"7:12-31","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"5:12-31","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"6:12-31","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","module":"./node_modules/lodash/_toKey.js","moduleName":"./node_modules/lodash/_toKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","resolvedModule":"./node_modules/lodash/_toKey.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":327,"resolvedModuleId":327},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"4:12-31","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":556,"sizes":{"javascript":556},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toSource.js","name":"./node_modules/lodash/_toSource.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toSource.js","index":60,"preOrderIndex":60,"index2":43,"postOrderIndex":43,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":346,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toSource","loc":"4:15-37","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toSource","loc":"7:15-37","moduleId":4160,"resolvedModuleId":4160},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toSource.js","module":"./node_modules/lodash/_toSource.js","moduleName":"./node_modules/lodash/_toSource.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toSource.js","resolvedModule":"./node_modules/lodash/_toSource.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":346,"resolvedModuleId":346}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":515,"sizes":{"javascript":515},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_trimmedEndIndex.js","name":"./node_modules/lodash/_trimmedEndIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_trimmedEndIndex.js","index":114,"preOrderIndex":114,"index2":109,"postOrderIndex":109,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","issuerName":"./node_modules/lodash/_baseTrim.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","name":"./node_modules/lodash/toNumber.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":4841},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","name":"./node_modules/lodash/_baseTrim.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7561}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7990,"issuerId":7561,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","module":"./node_modules/lodash/_baseTrim.js","moduleName":"./node_modules/lodash/_baseTrim.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","resolvedModule":"./node_modules/lodash/_baseTrim.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_trimmedEndIndex","loc":"1:22-51","moduleId":7561,"resolvedModuleId":7561},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_trimmedEndIndex.js","module":"./node_modules/lodash/_trimmedEndIndex.js","moduleName":"./node_modules/lodash/_trimmedEndIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_trimmedEndIndex.js","resolvedModule":"./node_modules/lodash/_trimmedEndIndex.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":7990,"resolvedModuleId":7990}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (ExpressionStatement) with side effects in source code at 19:0-33","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6100,"sizes":{"javascript":6100},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","index":110,"preOrderIndex":110,"index2":112,"postOrderIndex":112,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"68:21-30","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/debounce","loc":"15:19-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"94:28-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/debounce","loc":"15:19-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"94:28-37","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"191:0-14","moduleId":3279,"resolvedModuleId":3279}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 191:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":39,"sizes":{"javascript":39},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","index":3,"preOrderIndex":3,"index2":38,"postOrderIndex":38,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","issuerName":"./src/_js/customizer/global-service.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"4:0-32","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"154:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"162:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"170:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"193:2-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"209:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"310:2-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"451:2-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"4:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"154:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"162:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"170:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"193:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"209:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"310:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"451:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","module":"./src/_js/customizer/global-service.js","moduleName":"./src/_js/customizer/global-service.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"1:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","module":"./src/_js/customizer/global-service.js","moduleName":"./src/_js/customizer/global-service.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"59:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"1:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"59:2-7","moduleId":9495,"resolvedModuleId":null}],"usedExports":true,"providedExports":null,"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 1:0-38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":799,"sizes":{"javascript":799},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/eq.js","name":"./node_modules/lodash/eq.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/eq.js","index":70,"preOrderIndex":70,"index2":55,"postOrderIndex":55,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","issuerName":"./node_modules/lodash/_assignValue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","name":"./node_modules/lodash/_basePickBy.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3012},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","name":"./node_modules/lodash/_baseSet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":611},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","name":"./node_modules/lodash/_assignValue.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4865}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7813,"issuerId":4865,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","module":"./node_modules/lodash/_assignValue.js","moduleName":"./node_modules/lodash/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","resolvedModule":"./node_modules/lodash/_assignValue.js","type":"cjs require","active":true,"explanation":"","userRequest":"./eq","loc":"2:9-24","moduleId":4865,"resolvedModuleId":4865},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","module":"./node_modules/lodash/_assocIndexOf.js","moduleName":"./node_modules/lodash/_assocIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","resolvedModule":"./node_modules/lodash/_assocIndexOf.js","type":"cjs require","active":true,"explanation":"","userRequest":"./eq","loc":"1:9-24","moduleId":8470,"resolvedModuleId":8470},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./eq","loc":"3:9-24","moduleId":8351,"resolvedModuleId":8351},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/eq.js","module":"./node_modules/lodash/eq.js","moduleName":"./node_modules/lodash/eq.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/eq.js","resolvedModule":"./node_modules/lodash/eq.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":7813,"resolvedModuleId":7813}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (ExpressionStatement) with side effects in source code at 37:0-20","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1304,"sizes":{"javascript":1304},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","index":373,"preOrderIndex":373,"index2":376,"postOrderIndex":376,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/find","loc":"1:0-32","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/find","loc":"423:6-11","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/find","loc":"1:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/find","loc":"423:6-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","module":"./node_modules/lodash/find.js","moduleName":"./node_modules/lodash/find.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","resolvedModule":"./node_modules/lodash/find.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"42:0-14","moduleId":3311,"resolvedModuleId":3311}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 42:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:39","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1654,"sizes":{"javascript":1654},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","name":"./node_modules/lodash/findIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","index":375,"preOrderIndex":375,"index2":375,"postOrderIndex":375,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","issuerName":"./node_modules/lodash/find.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":998,"issuerId":3311,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","module":"./node_modules/lodash/find.js","moduleName":"./node_modules/lodash/find.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","resolvedModule":"./node_modules/lodash/find.js","type":"cjs require","active":true,"explanation":"","userRequest":"./findIndex","loc":"2:16-38","moduleId":3311,"resolvedModuleId":3311},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","module":"./node_modules/lodash/findIndex.js","moduleName":"./node_modules/lodash/findIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","resolvedModule":"./node_modules/lodash/findIndex.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"55:0-14","moduleId":998,"resolvedModuleId":998}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 55:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:39","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1355,"sizes":{"javascript":1355},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","index":4,"preOrderIndex":4,"index2":37,"postOrderIndex":37,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","issuerName":"./node_modules/lodash/each.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486,"issuerId":6073,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","module":"./node_modules/lodash/each.js","moduleName":"./node_modules/lodash/each.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","resolvedModule":"./node_modules/lodash/each.js","type":"cjs export require","active":true,"explanation":"","userRequest":"./forEach","loc":"1:0-37","moduleId":6073,"resolvedModuleId":6073},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"41:0-14","moduleId":4486,"resolvedModuleId":4486}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 41:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":884,"sizes":{"javascript":884},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","name":"./node_modules/lodash/get.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","index":181,"preOrderIndex":181,"index2":168,"postOrderIndex":168,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","issuerName":"./node_modules/lodash/_baseMatchesProperty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7361,"issuerId":6432,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./get","loc":"2:10-26","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","module":"./node_modules/lodash/get.js","moduleName":"./node_modules/lodash/get.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","resolvedModule":"./node_modules/lodash/get.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"33:0-14","moduleId":7361,"resolvedModuleId":7361}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 33:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":757,"sizes":{"javascript":757},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","index":379,"preOrderIndex":379,"index2":378,"postOrderIndex":378,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/has","loc":"2:0-30","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/has","loc":"283:6-10","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/has","loc":"2:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/has","loc":"283:6-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","module":"./node_modules/lodash/has.js","moduleName":"./node_modules/lodash/has.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","resolvedModule":"./node_modules/lodash/has.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"35:0-14","moduleId":8721,"resolvedModuleId":8721}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 35:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":753,"sizes":{"javascript":753},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","name":"./node_modules/lodash/hasIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","index":89,"preOrderIndex":89,"index2":87,"postOrderIndex":87,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","issuerName":"./node_modules/lodash/_basePick.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":9095,"issuerId":5970,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./hasIn","loc":"3:12-30","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","module":"./node_modules/lodash/_basePick.js","moduleName":"./node_modules/lodash/_basePick.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","resolvedModule":"./node_modules/lodash/_basePick.js","type":"cjs require","active":true,"explanation":"","userRequest":"./hasIn","loc":"2:12-30","moduleId":5970,"resolvedModuleId":5970},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","module":"./node_modules/lodash/hasIn.js","moduleName":"./node_modules/lodash/hasIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","resolvedModule":"./node_modules/lodash/hasIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"34:0-14","moduleId":9095,"resolvedModuleId":9095}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 34:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":370,"sizes":{"javascript":370},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/identity.js","name":"./node_modules/lodash/identity.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/identity.js","index":40,"preOrderIndex":40,"index2":35,"postOrderIndex":35,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","issuerName":"./node_modules/lodash/_castFunction.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","name":"./node_modules/lodash/_castFunction.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4290}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":6557,"issuerId":4290,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./identity","loc":"3:15-36","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","module":"./node_modules/lodash/_baseSetToString.js","moduleName":"./node_modules/lodash/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","resolvedModule":"./node_modules/lodash/_baseSetToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./identity","loc":"3:15-36","moduleId":6560,"resolvedModuleId":6560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","module":"./node_modules/lodash/_castFunction.js","moduleName":"./node_modules/lodash/_castFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","resolvedModule":"./node_modules/lodash/_castFunction.js","type":"cjs require","active":true,"explanation":"","userRequest":"./identity","loc":"1:15-36","moduleId":4290,"resolvedModuleId":4290},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/identity.js","module":"./node_modules/lodash/identity.js","moduleName":"./node_modules/lodash/identity.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/identity.js","resolvedModule":"./node_modules/lodash/identity.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":6557,"resolvedModuleId":6557}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (ExpressionStatement) with side effects in source code at 21:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1772,"sizes":{"javascript":1772},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","index":383,"preOrderIndex":383,"index2":386,"postOrderIndex":386,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/includes","loc":"7:0-40","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"16:51-60","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"31:52-61","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"57:49-58","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"81:54-63","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"105:51-60","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"129:50-59","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"133:54-63","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"137:55-64","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"222:8-17","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"232:11-20","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"237:11-20","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"278:6-15","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"352:7-16","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"383:9-18","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/includes","loc":"7:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"16:51-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"31:52-61","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"57:49-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"81:54-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"105:51-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"129:50-59","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"133:54-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"137:55-64","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"222:8-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"232:11-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"237:11-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"278:6-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"352:7-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"383:9-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","module":"./node_modules/lodash/includes.js","moduleName":"./node_modules/lodash/includes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","resolvedModule":"./node_modules/lodash/includes.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"53:0-14","moduleId":4721,"resolvedModuleId":4721}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 53:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:33","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1026,"sizes":{"javascript":1026},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","name":"./node_modules/lodash/isArguments.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","index":13,"preOrderIndex":13,"index2":13,"postOrderIndex":13,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":5694,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArguments","loc":"2:18-42","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArguments","loc":"2:18-42","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","module":"./node_modules/lodash/_isFlattenable.js","moduleName":"./node_modules/lodash/_isFlattenable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","resolvedModule":"./node_modules/lodash/_isFlattenable.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArguments","loc":"2:18-42","moduleId":7285,"resolvedModuleId":7285},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","module":"./node_modules/lodash/isArguments.js","moduleName":"./node_modules/lodash/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","resolvedModule":"./node_modules/lodash/isArguments.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"36:0-14","moduleId":5694,"resolvedModuleId":5694},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArguments","loc":"3:18-42","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 36:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":488,"sizes":{"javascript":488},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArray.js","name":"./node_modules/lodash/isArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArray.js","index":22,"preOrderIndex":22,"index2":14,"postOrderIndex":14,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","issuerName":"./node_modules/lodash/isString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":1469,"issuerId":7037,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"3:14-34","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"16:14-34","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","module":"./node_modules/lodash/_baseGetAllKeys.js","moduleName":"./node_modules/lodash/_baseGetAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","resolvedModule":"./node_modules/lodash/_baseGetAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"2:14-34","moduleId":8866,"resolvedModuleId":8866},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"6:14-34","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"4:14-34","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"3:14-34","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"1:14-34","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"3:14-34","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","module":"./node_modules/lodash/_isFlattenable.js","moduleName":"./node_modules/lodash/_isFlattenable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","resolvedModule":"./node_modules/lodash/_isFlattenable.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"3:14-34","moduleId":7285,"resolvedModuleId":7285},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","module":"./node_modules/lodash/_isKey.js","moduleName":"./node_modules/lodash/_isKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","resolvedModule":"./node_modules/lodash/_isKey.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"1:14-34","moduleId":5403,"resolvedModuleId":5403},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"4:14-34","moduleId":4486,"resolvedModuleId":4486},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArray.js","module":"./node_modules/lodash/isArray.js","moduleName":"./node_modules/lodash/isArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArray.js","resolvedModule":"./node_modules/lodash/isArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":1469,"resolvedModuleId":1469},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"4:14-34","moduleId":1609,"resolvedModuleId":1609},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","module":"./node_modules/lodash/isString.js","moduleName":"./node_modules/lodash/isString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","resolvedModule":"./node_modules/lodash/isString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"2:14-34","moduleId":7037,"resolvedModuleId":7037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","module":"./node_modules/lodash/map.js","moduleName":"./node_modules/lodash/map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","resolvedModule":"./node_modules/lodash/map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"4:14-34","moduleId":5161,"resolvedModuleId":5161}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 24:0-28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":830,"sizes":{"javascript":830},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","name":"./node_modules/lodash/isArrayLike.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","index":35,"preOrderIndex":35,"index2":30,"postOrderIndex":30,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":8612,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","module":"./node_modules/lodash/_baseMap.js","moduleName":"./node_modules/lodash/_baseMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","resolvedModule":"./node_modules/lodash/_baseMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"2:18-42","moduleId":9199,"resolvedModuleId":9199},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","module":"./node_modules/lodash/_createBaseEach.js","moduleName":"./node_modules/lodash/_createBaseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","resolvedModule":"./node_modules/lodash/_createBaseEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"1:18-42","moduleId":9291,"resolvedModuleId":9291},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","module":"./node_modules/lodash/_createFind.js","moduleName":"./node_modules/lodash/_createFind.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","resolvedModule":"./node_modules/lodash/_createFind.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"2:18-42","moduleId":7740,"resolvedModuleId":7740},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","module":"./node_modules/lodash/includes.js","moduleName":"./node_modules/lodash/includes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","resolvedModule":"./node_modules/lodash/includes.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"2:18-42","moduleId":4721,"resolvedModuleId":4721},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","module":"./node_modules/lodash/isArrayLike.js","moduleName":"./node_modules/lodash/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","resolvedModule":"./node_modules/lodash/isArrayLike.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"33:0-14","moduleId":8612,"resolvedModuleId":8612},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"5:18-42","moduleId":1609,"resolvedModuleId":1609},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","module":"./node_modules/lodash/keys.js","moduleName":"./node_modules/lodash/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","resolvedModule":"./node_modules/lodash/keys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"3:18-42","moduleId":3674,"resolvedModuleId":3674},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","module":"./node_modules/lodash/keysIn.js","moduleName":"./node_modules/lodash/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","resolvedModule":"./node_modules/lodash/keysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"3:18-42","moduleId":1704,"resolvedModuleId":1704}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 33:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1114,"sizes":{"javascript":1114},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","name":"./node_modules/lodash/isBuffer.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","index":23,"preOrderIndex":23,"index2":16,"postOrderIndex":16,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4144,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isBuffer","loc":"4:15-36","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isBuffer","loc":"17:15-36","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isBuffer","loc":"7:15-36","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"5:48-55","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"5:60-76","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"5:80-87","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"8:61-67","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"8:72-78","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"8:91-97","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"38:0-14","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isBuffer","loc":"6:15-36","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: exports is used directly at 5:48-55","CommonJS bailout: exports is used directly at 5:80-87","CommonJS bailout: module.exports is used directly at 38:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:39","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2000,"sizes":{"javascript":2000},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","index":381,"preOrderIndex":381,"index2":379,"postOrderIndex":379,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"3:0-38","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"178:52-60","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"178:85-93","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"194:8-16","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"202:7-15","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"208:7-15","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"268:6-14","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"273:6-14","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"304:6-14","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"355:9-17","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"358:11-19","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"386:11-19","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"389:13-21","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"413:60-68","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"415:61-69","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"3:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"178:52-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"178:85-93","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"194:8-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"202:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"208:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"268:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"273:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"304:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"355:9-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"358:11-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"386:11-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"389:13-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"413:60-68","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"415:61-69","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"77:0-14","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 77:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-8:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":993,"sizes":{"javascript":993},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","name":"./node_modules/lodash/isFunction.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","index":36,"preOrderIndex":36,"index2":29,"postOrderIndex":29,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","issuerName":"./node_modules/lodash/isArrayLike.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","name":"./node_modules/lodash/isArrayLike.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":8612}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":3560,"issuerId":8612,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isFunction","loc":"1:17-40","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","module":"./node_modules/lodash/isArrayLike.js","moduleName":"./node_modules/lodash/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","resolvedModule":"./node_modules/lodash/isArrayLike.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isFunction","loc":"1:17-40","moduleId":8612,"resolvedModuleId":8612},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","module":"./node_modules/lodash/isFunction.js","moduleName":"./node_modules/lodash/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","resolvedModule":"./node_modules/lodash/isFunction.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":3560,"resolvedModuleId":3560}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":802,"sizes":{"javascript":802},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isLength.js","name":"./node_modules/lodash/isLength.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isLength.js","index":28,"preOrderIndex":28,"index2":18,"postOrderIndex":18,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","issuerName":"./node_modules/lodash/_hasPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":1780,"issuerId":222,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","module":"./node_modules/lodash/_baseIsTypedArray.js","moduleName":"./node_modules/lodash/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash/_baseIsTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isLength","loc":"2:15-36","moduleId":8749,"resolvedModuleId":8749},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isLength","loc":"5:15-36","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","module":"./node_modules/lodash/isArrayLike.js","moduleName":"./node_modules/lodash/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","resolvedModule":"./node_modules/lodash/isArrayLike.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isLength","loc":"2:15-36","moduleId":8612,"resolvedModuleId":8612},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isLength.js","module":"./node_modules/lodash/isLength.js","moduleName":"./node_modules/lodash/isLength.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isLength.js","resolvedModule":"./node_modules/lodash/isLength.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"35:0-14","moduleId":1780,"resolvedModuleId":1780}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 35:0-14","Statement (ExpressionStatement) with side effects in source code at 35:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":886,"sizes":{"javascript":886},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","name":"./node_modules/lodash/isNumber.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","index":382,"preOrderIndex":382,"index2":380,"postOrderIndex":380,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1763,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isNumber","loc":"5:0-40","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isNumber","loc":"52:15-24","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isNumber","loc":"5:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isNumber","loc":"52:15-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","module":"./node_modules/lodash/isNumber.js","moduleName":"./node_modules/lodash/isNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","resolvedModule":"./node_modules/lodash/isNumber.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"38:0-14","moduleId":1763,"resolvedModuleId":1763}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 38:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":733,"sizes":{"javascript":733},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","name":"./node_modules/lodash/isObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","index":37,"preOrderIndex":37,"index2":28,"postOrderIndex":28,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","issuerName":"./node_modules/lodash/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3218,"issuerId":3279,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"19:15-36","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","module":"./node_modules/lodash/_baseCreate.js","moduleName":"./node_modules/lodash/_baseCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","resolvedModule":"./node_modules/lodash/_baseCreate.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":3118,"resolvedModuleId":3118},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"3:15-36","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","module":"./node_modules/lodash/_baseKeysIn.js","moduleName":"./node_modules/lodash/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","resolvedModule":"./node_modules/lodash/_baseKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":313,"resolvedModuleId":313},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"4:15-36","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","module":"./node_modules/lodash/_isStrictComparable.js","moduleName":"./node_modules/lodash/_isStrictComparable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","resolvedModule":"./node_modules/lodash/_isStrictComparable.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":9162,"resolvedModuleId":9162},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":3279,"resolvedModuleId":3279},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","module":"./node_modules/lodash/isFunction.js","moduleName":"./node_modules/lodash/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","resolvedModule":"./node_modules/lodash/isFunction.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"2:15-36","moduleId":3560,"resolvedModuleId":3560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","module":"./node_modules/lodash/isObject.js","moduleName":"./node_modules/lodash/isObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","resolvedModule":"./node_modules/lodash/isObject.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"31:0-14","moduleId":3218,"resolvedModuleId":3218},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"2:15-36","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 31:0-14","Statement (ExpressionStatement) with side effects in source code at 31:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":614,"sizes":{"javascript":614},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObjectLike.js","name":"./node_modules/lodash/isObjectLike.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObjectLike.js","index":21,"preOrderIndex":21,"index2":11,"postOrderIndex":11,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","issuerName":"./node_modules/lodash/isString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":7005,"issuerId":7037,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","module":"./node_modules/lodash/_baseIsArguments.js","moduleName":"./node_modules/lodash/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","resolvedModule":"./node_modules/lodash/_baseIsArguments.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":9454,"resolvedModuleId":9454},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","module":"./node_modules/lodash/_baseIsEqual.js","moduleName":"./node_modules/lodash/_baseIsEqual.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","resolvedModule":"./node_modules/lodash/_baseIsEqual.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":939,"resolvedModuleId":939},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","module":"./node_modules/lodash/_baseIsMap.js","moduleName":"./node_modules/lodash/_baseIsMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","resolvedModule":"./node_modules/lodash/_baseIsMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":5588,"resolvedModuleId":5588},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","module":"./node_modules/lodash/_baseIsSet.js","moduleName":"./node_modules/lodash/_baseIsSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","resolvedModule":"./node_modules/lodash/_baseIsSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":9221,"resolvedModuleId":9221},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","module":"./node_modules/lodash/_baseIsTypedArray.js","moduleName":"./node_modules/lodash/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash/_baseIsTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"3:19-44","moduleId":8749,"resolvedModuleId":8749},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","module":"./node_modules/lodash/isArguments.js","moduleName":"./node_modules/lodash/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","resolvedModule":"./node_modules/lodash/isArguments.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":5694,"resolvedModuleId":5694},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","module":"./node_modules/lodash/isNumber.js","moduleName":"./node_modules/lodash/isNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","resolvedModule":"./node_modules/lodash/isNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":1763,"resolvedModuleId":1763},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObjectLike.js","module":"./node_modules/lodash/isObjectLike.js","moduleName":"./node_modules/lodash/isObjectLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObjectLike.js","resolvedModule":"./node_modules/lodash/isObjectLike.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"29:0-14","moduleId":7005,"resolvedModuleId":7005},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","module":"./node_modules/lodash/isPlainObject.js","moduleName":"./node_modules/lodash/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","resolvedModule":"./node_modules/lodash/isPlainObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"3:19-44","moduleId":8630,"resolvedModuleId":8630},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","module":"./node_modules/lodash/isString.js","moduleName":"./node_modules/lodash/isString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","resolvedModule":"./node_modules/lodash/isString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"3:19-44","moduleId":7037,"resolvedModuleId":7037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","module":"./node_modules/lodash/isSymbol.js","moduleName":"./node_modules/lodash/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","resolvedModule":"./node_modules/lodash/isSymbol.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":3448,"resolvedModuleId":3448}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 29:0-14","Statement (ExpressionStatement) with side effects in source code at 29:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":723,"sizes":{"javascript":723},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","index":140,"preOrderIndex":140,"index2":130,"postOrderIndex":130,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isString","loc":"6:0-40","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isString","loc":"34:8-17","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isString","loc":"6:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isString","loc":"34:8-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","module":"./node_modules/lodash/includes.js","moduleName":"./node_modules/lodash/includes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","resolvedModule":"./node_modules/lodash/includes.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isString","loc":"3:15-36","moduleId":4721,"resolvedModuleId":4721},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","module":"./node_modules/lodash/isString.js","moduleName":"./node_modules/lodash/isString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","resolvedModule":"./node_modules/lodash/isString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":7037,"resolvedModuleId":7037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","module":"./node_modules/reactcss/lib/flattenNames.js","moduleName":"./node_modules/reactcss/lib/flattenNames.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","resolvedModule":"./node_modules/reactcss/lib/flattenNames.js","type":"cjs require","active":true,"explanation":"","userRequest":"lodash/isString","loc":"8:17-43","moduleId":4147,"resolvedModuleId":4147}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":682,"sizes":{"javascript":682},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","name":"./node_modules/lodash/isSymbol.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","index":47,"preOrderIndex":47,"index2":39,"postOrderIndex":39,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","issuerName":"./node_modules/lodash/toNumber.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","name":"./node_modules/lodash/toNumber.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":4841}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":3448,"issuerId":4841,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSymbol","loc":"4:15-36","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","module":"./node_modules/lodash/_isKey.js","moduleName":"./node_modules/lodash/_isKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","resolvedModule":"./node_modules/lodash/_isKey.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSymbol","loc":"2:15-36","moduleId":5403,"resolvedModuleId":5403},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","module":"./node_modules/lodash/_toKey.js","moduleName":"./node_modules/lodash/_toKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","resolvedModule":"./node_modules/lodash/_toKey.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSymbol","loc":"1:15-36","moduleId":327,"resolvedModuleId":327},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","module":"./node_modules/lodash/isSymbol.js","moduleName":"./node_modules/lodash/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","resolvedModule":"./node_modules/lodash/isSymbol.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"29:0-14","moduleId":3448,"resolvedModuleId":3448},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSymbol","loc":"3:15-36","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 29:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":695,"sizes":{"javascript":695},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","name":"./node_modules/lodash/isTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","index":26,"preOrderIndex":26,"index2":22,"postOrderIndex":22,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6719,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isTypedArray","loc":"6:19-44","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isTypedArray","loc":"8:19-44","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isTypedArray","loc":"8:19-44","moduleId":1609,"resolvedModuleId":1609},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","module":"./node_modules/lodash/isTypedArray.js","moduleName":"./node_modules/lodash/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","resolvedModule":"./node_modules/lodash/isTypedArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":6719,"resolvedModuleId":6719}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":884,"sizes":{"javascript":884},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","name":"./node_modules/lodash/keys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","index":10,"preOrderIndex":10,"index2":31,"postOrderIndex":31,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","issuerName":"./node_modules/lodash/_createFind.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3674,"issuerId":7740,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","module":"./node_modules/lodash/_baseAssign.js","moduleName":"./node_modules/lodash/_baseAssign.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","resolvedModule":"./node_modules/lodash/_baseAssign.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"2:11-28","moduleId":4037,"resolvedModuleId":4037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"21:11-28","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","module":"./node_modules/lodash/_baseForOwn.js","moduleName":"./node_modules/lodash/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","resolvedModule":"./node_modules/lodash/_baseForOwn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"2:11-28","moduleId":7816,"resolvedModuleId":7816},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","module":"./node_modules/lodash/_createFind.js","moduleName":"./node_modules/lodash/_createFind.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","resolvedModule":"./node_modules/lodash/_createFind.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"3:11-28","moduleId":7740,"resolvedModuleId":7740},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","module":"./node_modules/lodash/_getAllKeys.js","moduleName":"./node_modules/lodash/_getAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","resolvedModule":"./node_modules/lodash/_getAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"3:11-28","moduleId":8234,"resolvedModuleId":8234},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","module":"./node_modules/lodash/_getMatchData.js","moduleName":"./node_modules/lodash/_getMatchData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","resolvedModule":"./node_modules/lodash/_getMatchData.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"2:11-28","moduleId":1499,"resolvedModuleId":1499},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","module":"./node_modules/lodash/keys.js","moduleName":"./node_modules/lodash/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","resolvedModule":"./node_modules/lodash/keys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":3674,"resolvedModuleId":3674},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","module":"./node_modules/lodash/values.js","moduleName":"./node_modules/lodash/values.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","resolvedModule":"./node_modules/lodash/values.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"2:11-28","moduleId":2628,"resolvedModuleId":2628}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:43","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2224,"sizes":{"javascript":2224},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","index":50,"preOrderIndex":50,"index2":71,"postOrderIndex":71,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","issuerName":"./node_modules/lodash/_memoizeCapped.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306,"issuerId":4523,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","module":"./node_modules/lodash/_memoizeCapped.js","moduleName":"./node_modules/lodash/_memoizeCapped.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","resolvedModule":"./node_modules/lodash/_memoizeCapped.js","type":"cjs require","active":true,"explanation":"","userRequest":"./memoize","loc":"1:14-34","moduleId":4523,"resolvedModuleId":4523},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","module":"./node_modules/lodash/memoize.js","moduleName":"./node_modules/lodash/memoize.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","resolvedModule":"./node_modules/lodash/memoize.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"73:0-14","moduleId":8306,"resolvedModuleId":8306}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 73:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":520,"sizes":{"javascript":520},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","name":"./node_modules/lodash/now.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","index":111,"preOrderIndex":111,"index2":108,"postOrderIndex":108,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","issuerName":"./node_modules/lodash/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7771,"issuerId":3279,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs require","active":true,"explanation":"","userRequest":"./now","loc":"2:10-26","moduleId":3279,"resolvedModuleId":3279},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","module":"./node_modules/lodash/now.js","moduleName":"./node_modules/lodash/now.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","resolvedModule":"./node_modules/lodash/now.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":7771,"resolvedModuleId":7771}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":793,"sizes":{"javascript":793},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","name":"./node_modules/lodash/property.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","index":182,"preOrderIndex":182,"index2":172,"postOrderIndex":172,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","issuerName":"./node_modules/lodash/_baseIteratee.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9601,"issuerId":7206,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./property","loc":"5:15-36","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":390,"sizes":{"javascript":390},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubArray.js","name":"./node_modules/lodash/stubArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubArray.js","index":171,"preOrderIndex":171,"index2":152,"postOrderIndex":152,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","issuerName":"./node_modules/lodash/_getSymbols.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","name":"./node_modules/lodash/_getSymbols.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9551}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":479,"issuerId":9551,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","module":"./node_modules/lodash/_getSymbols.js","moduleName":"./node_modules/lodash/_getSymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","resolvedModule":"./node_modules/lodash/_getSymbols.js","type":"cjs require","active":true,"explanation":"","userRequest":"./stubArray","loc":"2:16-38","moduleId":9551,"resolvedModuleId":9551},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","module":"./node_modules/lodash/_getSymbolsIn.js","moduleName":"./node_modules/lodash/_getSymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","resolvedModule":"./node_modules/lodash/_getSymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./stubArray","loc":"4:16-38","moduleId":1442,"resolvedModuleId":1442},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubArray.js","module":"./node_modules/lodash/stubArray.js","moduleName":"./node_modules/lodash/stubArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubArray.js","resolvedModule":"./node_modules/lodash/stubArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":479,"resolvedModuleId":479}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (ExpressionStatement) with side effects in source code at 23:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":280,"sizes":{"javascript":280},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubFalse.js","name":"./node_modules/lodash/stubFalse.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubFalse.js","index":24,"preOrderIndex":24,"index2":15,"postOrderIndex":15,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","issuerName":"./node_modules/lodash/isBuffer.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","name":"./node_modules/lodash/isBuffer.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4144}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5062,"issuerId":4144,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs require","active":true,"explanation":"","userRequest":"./stubFalse","loc":"2:16-38","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubFalse.js","module":"./node_modules/lodash/stubFalse.js","moduleName":"./node_modules/lodash/stubFalse.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubFalse.js","resolvedModule":"./node_modules/lodash/stubFalse.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":5062,"resolvedModuleId":5062}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (ExpressionStatement) with side effects in source code at 18:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":868,"sizes":{"javascript":868},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","name":"./node_modules/lodash/toFinite.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","index":378,"preOrderIndex":378,"index2":373,"postOrderIndex":373,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toInteger.js","issuerName":"./node_modules/lodash/toInteger.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toInteger.js","name":"./node_modules/lodash/toInteger.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":5,"additionalIntegration":0,"factory":0,"dependencies":5},"id":554}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8601,"issuerId":554,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","module":"./node_modules/lodash/toFinite.js","moduleName":"./node_modules/lodash/toFinite.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","resolvedModule":"./node_modules/lodash/toFinite.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"42:0-14","moduleId":8601,"resolvedModuleId":8601},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toInteger.js","module":"./node_modules/lodash/toInteger.js","moduleName":"./node_modules/lodash/toInteger.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toInteger.js","resolvedModule":"./node_modules/lodash/toInteger.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toFinite","loc":"1:15-36","moduleId":554,"resolvedModuleId":554}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 42:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":760,"sizes":{"javascript":760},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toInteger.js","name":"./node_modules/lodash/toInteger.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toInteger.js","index":377,"preOrderIndex":377,"index2":374,"postOrderIndex":374,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","issuerName":"./node_modules/lodash/includes.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":5,"additionalIntegration":0,"factory":0,"dependencies":5},"id":554,"issuerId":4721,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","module":"./node_modules/lodash/findIndex.js","moduleName":"./node_modules/lodash/findIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","resolvedModule":"./node_modules/lodash/findIndex.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toInteger","loc":"3:16-38","moduleId":998,"resolvedModuleId":998},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","module":"./node_modules/lodash/includes.js","moduleName":"./node_modules/lodash/includes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","resolvedModule":"./node_modules/lodash/includes.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toInteger","loc":"4:16-38","moduleId":4721,"resolvedModuleId":4721},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toInteger.js","module":"./node_modules/lodash/toInteger.js","moduleName":"./node_modules/lodash/toInteger.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toInteger.js","resolvedModule":"./node_modules/lodash/toInteger.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"36:0-14","moduleId":554,"resolvedModuleId":554}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 36:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1519,"sizes":{"javascript":1519},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","name":"./node_modules/lodash/toNumber.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","index":112,"preOrderIndex":112,"index2":111,"postOrderIndex":111,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","issuerName":"./node_modules/lodash/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":4841,"issuerId":3279,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toNumber","loc":"3:15-36","moduleId":3279,"resolvedModuleId":3279},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","module":"./node_modules/lodash/toFinite.js","moduleName":"./node_modules/lodash/toFinite.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","resolvedModule":"./node_modules/lodash/toFinite.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toNumber","loc":"1:15-36","moduleId":8601,"resolvedModuleId":8601},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"64:0-14","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 64:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":580,"sizes":{"javascript":580},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","name":"./node_modules/lodash/toString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","index":81,"preOrderIndex":81,"index2":76,"postOrderIndex":76,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","issuerName":"./node_modules/lodash/_castPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9833,"issuerId":1811,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toString","loc":"4:15-36","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","module":"./node_modules/lodash/toString.js","moduleName":"./node_modules/lodash/toString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","resolvedModule":"./node_modules/lodash/toString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"28:0-14","moduleId":9833,"resolvedModuleId":9833}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 28:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":733,"sizes":{"javascript":733},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","name":"./node_modules/lodash/values.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","index":387,"preOrderIndex":387,"index2":385,"postOrderIndex":385,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","issuerName":"./node_modules/lodash/includes.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2628,"issuerId":4721,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","module":"./node_modules/lodash/includes.js","moduleName":"./node_modules/lodash/includes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","resolvedModule":"./node_modules/lodash/includes.js","type":"cjs require","active":true,"explanation":"","userRequest":"./values","loc":"5:13-32","moduleId":4721,"resolvedModuleId":4721},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","module":"./node_modules/lodash/values.js","moduleName":"./node_modules/lodash/values.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","resolvedModule":"./node_modules/lodash/values.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"34:0-14","moduleId":2628,"resolvedModuleId":2628}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 34:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6827,"sizes":{"javascript":6827},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","name":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","index":124,"preOrderIndex":124,"index2":118,"postOrderIndex":118,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","issuerName":"./src/_js/customizer-preview/style.scss","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./src/_js/customizer-preview/style.scss","profile":{"total":352,"resolving":326,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":326,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3379,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-95","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-95","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","module":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","moduleName":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","resolvedModule":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"230:0-14","moduleId":3379,"resolvedModuleId":3379}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 230:0-14","Statement (VariableDeclaration) with side effects in source code at 3:0-17:4","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/esm","layer":null,"size":28466,"sizes":{"javascript":28466},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","name":"./src/_js/customizer-preview/index.js + 2 modules","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","index":369,"preOrderIndex":369,"index2":388,"postOrderIndex":388,"cacheable":true,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":2961,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer-preview/index.js","loc":"customizerPreview","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer-preview/index.js","loc":"customizerPreview.min","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null}],"usedExports":true,"providedExports":["default"],"optimizationBailout":["ModuleConcatenation bailout: Cannot concat with ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss: Module uses module.id","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/debounce.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/each.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/find.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/has.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/includes.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/isEmpty.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/isNumber.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/isString.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with external \"jQuery\": Module is not in strict mode"],"depth":0,"modules":[{"type":"module","moduleType":"javascript/auto","layer":null,"size":5636,"sizes":{"javascript":5636},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","index":369,"preOrderIndex":369,"index2":388,"postOrderIndex":388,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":null,"issuerName":null,"issuerPath":null,"failed":false,"errors":0,"warnings":0,"profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[],"usedExports":true,"providedExports":["default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 14:0-23"],"depth":0},{"type":"module","moduleType":"javascript/auto","layer":null,"size":385,"sizes":{"javascript":385},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./src/_js/customizer-preview/style.scss","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","index":370,"preOrderIndex":370,"index2":370,"postOrderIndex":370,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":352,"resolving":326,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":326,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./style.scss","loc":"11:0-22","moduleId":null,"resolvedModuleId":null}],"usedExports":[],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-17"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":22445,"sizes":{"javascript":22445},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","index":372,"preOrderIndex":372,"index2":387,"postOrderIndex":387,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"13:0-89","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"112:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"113:23-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"114:15-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["getFontFieldCSSCode","getFontFieldCSSValue","maybeLoadFontFamily"],"providedExports":["getFieldUnit","getFontFieldCSSCode","getFontFieldCSSValue","maybeLoadFontFamily"],"optimizationBailout":[],"depth":1}]},{"type":"module","moduleType":"javascript/dynamic","layer":null,"size":42,"sizes":{"javascript":42},"built":true,"codeGenerated":true,"cached":false,"identifier":"external \"jQuery\"","name":"external \"jQuery\"","nameForCondition":null,"index":1,"preOrderIndex":1,"index2":0,"postOrderIndex":0,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3609,"issuerId":null,"chunks":[81,104,290,527,628,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"12:0-23","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"33:6-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:6-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"11:0-23","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"158:29-37","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"247:2-8","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"11:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"158:29-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"247:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"5:25-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"25:27-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"26:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"34:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"35:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"43:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"44:25-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"59:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"72:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"82:4-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"86:8-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"101:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"111:4-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"10:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"12:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:34-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:29-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"26:29-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"37:13-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"5:23-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"31:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"13:2-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"20:2-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"21:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"27:11-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"27:24-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"68:8-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"69:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"81:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"82:33-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"86:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"87:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"95:8-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"102:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"103:33-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"107:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"108:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"115:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"116:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"119:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"145:8-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:22-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"7:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"9:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"25:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"35:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"39:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"2:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"9:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"11:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"62:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"75:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:27-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"10:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"21:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:18-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"24:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"34:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","module":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","moduleName":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","module":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","moduleName":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"57:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","module":"./src/_js/customizer/fonts/utils/update-font-head-title.js","moduleName":"./src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","module":"./src/_js/customizer/fonts/utils/update-font-head-title.js","moduleName":"./src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","module":"./src/_js/customizer/fonts/utils/update-variant-field.js","moduleName":"./src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","module":"./src/_js/customizer/fonts/utils/update-variant-field.js","moduleName":"./src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"40:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"5:25-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"25:27-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"26:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"34:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"35:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"43:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"44:25-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"59:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"72:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"82:4-10","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"86:8-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"101:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"111:4-10","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"10:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"12:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:34-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:29-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"26:29-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"37:13-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"5:23-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"31:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"13:2-33","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"20:2-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"21:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"27:11-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"27:24-44","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"68:8-9","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"69:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"81:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"82:33-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"86:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"87:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"95:8-9","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"102:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"103:33-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"107:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"108:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"115:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"116:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"119:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"145:8-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:22-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"7:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"9:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"25:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"35:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"39:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"2:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"9:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"11:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"62:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"75:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:27-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"10:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"21:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:18-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"24:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"34:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"57:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"40:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"6:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:23-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"6:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:23-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"9:0-23","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"13:12-13","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:20-21","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:17-18","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"23:31-32","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"44:6-7","moduleId":4299,"resolvedModuleId":4299}],"usedExports":true,"providedExports":null,"optimizationBailout":["ModuleConcatenation bailout: Module is not in strict mode"],"depth":1},{"type":"module","moduleType":"runtime","layer":null,"size":302,"sizes":{"runtime":302},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/compat get default export","name":"webpack/runtime/compat get default export","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[527],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":313,"sizes":{"runtime":313},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/define property getters","name":"webpack/runtime/define property getters","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[527],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":221,"sizes":{"runtime":221},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/global","name":"webpack/runtime/global","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[527],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":103,"sizes":{"runtime":103},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/hasOwnProperty shorthand","name":"webpack/runtime/hasOwnProperty shorthand","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[527],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":279,"sizes":{"runtime":279},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/make namespace object","name":"webpack/runtime/make namespace object","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[527],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":128,"sizes":{"runtime":128},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/node module decorator","name":"webpack/runtime/node module decorator","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[527],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null}],"origins":[{"module":"","moduleIdentifier":"","moduleName":"","loc":"customizerPreview.min","request":"./src/_js/customizer-preview/index.js"}]},{"rendered":true,"initial":true,"entry":true,"recorded":false,"size":924,"sizes":{"javascript":924},"names":["settings.min"],"idHints":[],"runtime":["settings.min"],"files":["settings.min.js"],"auxiliaryFiles":[],"hash":"6c81a7d58bdcfc6e54ea","childrenByOrder":{},"id":570,"siblings":[],"parents":[],"children":[],"modules":[{"type":"module","moduleType":"javascript/auto","layer":null,"size":924,"sizes":{"javascript":924},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/settings/index.js","name":"./src/_js/settings/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/settings/index.js","index":391,"preOrderIndex":391,"index2":391,"postOrderIndex":391,"cacheable":true,"optional":false,"orphan":false,"dependent":false,"issuer":null,"issuerName":null,"issuerPath":null,"failed":false,"errors":0,"warnings":0,"profile":{"total":866,"resolving":36,"restoring":0,"building":830,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":7938,"issuerId":null,"chunks":[570,571],"assets":[],"reasons":[{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/settings/index.js","loc":"settings","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/settings/index.js","loc":"settings.min","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null}],"usedExports":true,"providedExports":null,"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 1:0-32:11","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":0}],"origins":[{"module":"","moduleIdentifier":"","moduleName":"","loc":"settings.min","request":"./src/_js/settings/index.js"}]},{"rendered":true,"initial":true,"entry":true,"recorded":false,"size":924,"sizes":{"javascript":924},"names":["settings"],"idHints":[],"runtime":["settings"],"files":["settings.js"],"auxiliaryFiles":[],"hash":"200953816f5e3fad54e0","childrenByOrder":{},"id":571,"siblings":[],"parents":[],"children":[],"modules":[{"type":"module","moduleType":"javascript/auto","layer":null,"size":924,"sizes":{"javascript":924},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/settings/index.js","name":"./src/_js/settings/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/settings/index.js","index":391,"preOrderIndex":391,"index2":391,"postOrderIndex":391,"cacheable":true,"optional":false,"orphan":false,"dependent":false,"issuer":null,"issuerName":null,"issuerPath":null,"failed":false,"errors":0,"warnings":0,"profile":{"total":866,"resolving":36,"restoring":0,"building":830,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":7938,"issuerId":null,"chunks":[570,571],"assets":[],"reasons":[{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/settings/index.js","loc":"settings","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/settings/index.js","loc":"settings.min","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null}],"usedExports":true,"providedExports":null,"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 1:0-32:11","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":0}],"origins":[{"module":"","moduleIdentifier":"","moduleName":"","loc":"settings","request":"./src/_js/settings/index.js"}]},{"rendered":true,"initial":true,"entry":true,"recorded":false,"size":10030,"sizes":{"javascript":10030},"names":["customizerSearch.min"],"idHints":[],"runtime":["customizerSearch.min"],"files":["customizer-search.min.js"],"auxiliaryFiles":[],"hash":"101f97f93d52c42c248d","childrenByOrder":{},"id":597,"siblings":[],"parents":[],"children":[],"modules":[{"type":"module","moduleType":"javascript/auto","layer":null,"size":10030,"sizes":{"javascript":10030},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-search/index.js","name":"./src/_js/customizer-search/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-search/index.js","index":389,"preOrderIndex":389,"index2":389,"postOrderIndex":389,"cacheable":true,"optional":false,"orphan":false,"dependent":false,"issuer":null,"issuerName":null,"issuerPath":null,"failed":false,"errors":0,"warnings":0,"profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":5785,"issuerId":null,"chunks":[354,597],"assets":[],"reasons":[{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer-search/index.js","loc":"customizerSearch","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer-search/index.js","loc":"customizerSearch.min","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null}],"usedExports":true,"providedExports":null,"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 8:0-62","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":0}],"origins":[{"module":"","moduleIdentifier":"","moduleName":"","loc":"customizerSearch.min","request":"./src/_js/customizer-search/index.js"}]},{"rendered":true,"initial":true,"entry":true,"recorded":false,"size":5383,"sizes":{"javascript":4386,"runtime":997},"names":["darkMode.min"],"idHints":[],"runtime":["darkMode.min"],"files":["dark-mode.min.js"],"auxiliaryFiles":[],"hash":"fb829159c333a3f6645d","childrenByOrder":{},"id":628,"siblings":[],"parents":[],"children":[],"modules":[{"type":"module","moduleType":"javascript/auto","layer":null,"size":4344,"sizes":{"javascript":4344},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","name":"./src/_js/dark-mode/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","index":390,"preOrderIndex":390,"index2":390,"postOrderIndex":390,"cacheable":true,"optional":false,"orphan":false,"dependent":false,"issuer":null,"issuerName":null,"issuerPath":null,"failed":false,"errors":0,"warnings":0,"profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":4299,"issuerId":null,"chunks":[81,628],"assets":[],"reasons":[{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/dark-mode/index.js","loc":"darkMode","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/dark-mode/index.js","loc":"darkMode.min","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null}],"usedExports":true,"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 13:0-22","ModuleConcatenation bailout: Cannot concat with external \"jQuery\": Module is not in strict mode"],"depth":0},{"type":"module","moduleType":"javascript/dynamic","layer":null,"size":42,"sizes":{"javascript":42},"built":true,"codeGenerated":true,"cached":false,"identifier":"external \"jQuery\"","name":"external \"jQuery\"","nameForCondition":null,"index":1,"preOrderIndex":1,"index2":0,"postOrderIndex":0,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3609,"issuerId":null,"chunks":[81,104,290,527,628,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"12:0-23","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"33:6-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:6-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"11:0-23","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"158:29-37","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"247:2-8","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"11:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"158:29-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"247:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"5:25-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"25:27-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"26:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"34:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"35:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"43:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"44:25-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"59:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"72:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"82:4-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"86:8-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"101:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"111:4-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"10:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"12:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:34-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:29-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"26:29-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"37:13-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"5:23-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"31:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"13:2-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"20:2-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"21:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"27:11-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"27:24-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"68:8-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"69:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"81:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"82:33-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"86:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"87:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"95:8-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"102:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"103:33-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"107:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"108:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"115:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"116:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"119:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"145:8-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:22-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"7:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"9:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"25:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"35:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"39:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"2:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"9:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"11:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"62:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"75:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:27-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"10:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"21:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:18-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"24:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"34:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","module":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","moduleName":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","module":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","moduleName":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"57:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","module":"./src/_js/customizer/fonts/utils/update-font-head-title.js","moduleName":"./src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","module":"./src/_js/customizer/fonts/utils/update-font-head-title.js","moduleName":"./src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","module":"./src/_js/customizer/fonts/utils/update-variant-field.js","moduleName":"./src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","module":"./src/_js/customizer/fonts/utils/update-variant-field.js","moduleName":"./src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"40:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"5:25-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"25:27-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"26:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"34:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"35:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"43:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"44:25-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"59:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"72:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"82:4-10","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"86:8-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"101:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"111:4-10","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"10:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"12:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:34-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:29-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"26:29-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"37:13-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"5:23-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"31:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"13:2-33","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"20:2-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"21:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"27:11-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"27:24-44","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"68:8-9","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"69:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"81:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"82:33-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"86:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"87:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"95:8-9","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"102:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"103:33-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"107:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"108:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"115:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"116:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"119:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"145:8-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"4:22-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"7:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"9:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"25:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"35:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"39:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"2:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"9:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"11:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"62:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"75:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"3:27-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"10:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"18:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"21:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"22:18-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"24:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"34:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"57:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"40:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"6:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:23-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"6:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"8:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"14:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"15:23-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"9:0-23","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"13:12-13","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:20-21","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:17-18","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"23:31-32","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"44:6-7","moduleId":4299,"resolvedModuleId":4299}],"usedExports":true,"providedExports":null,"optimizationBailout":["ModuleConcatenation bailout: Module is not in strict mode"],"depth":1},{"type":"module","moduleType":"runtime","layer":null,"size":302,"sizes":{"runtime":302},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/compat get default export","name":"webpack/runtime/compat get default export","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[628],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":313,"sizes":{"runtime":313},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/define property getters","name":"webpack/runtime/define property getters","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[628],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":103,"sizes":{"runtime":103},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/hasOwnProperty shorthand","name":"webpack/runtime/hasOwnProperty shorthand","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[628],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":279,"sizes":{"runtime":279},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/make namespace object","name":"webpack/runtime/make namespace object","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[628],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null}],"origins":[{"module":"","moduleIdentifier":"","moduleName":"","loc":"darkMode.min","request":"./src/_js/dark-mode/index.js"}]},{"rendered":true,"initial":true,"entry":true,"recorded":false,"size":556740,"sizes":{"javascript":555394,"runtime":1346},"names":["customizer.min"],"idHints":[],"runtime":["customizer.min"],"files":["customizer.min.js"],"auxiliaryFiles":[],"hash":"bac17c1b03252f25391b","childrenByOrder":{},"id":861,"siblings":[],"parents":[],"children":[],"modules":[{"type":"module","moduleType":"javascript/auto","layer":null,"size":100003,"sizes":{"javascript":100003},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","name":"./node_modules/chroma-js/chroma.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","index":119,"preOrderIndex":119,"index2":114,"postOrderIndex":114,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","issuerName":"./src/_js/customizer/colors/components/builder/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","name":"./src/_js/customizer/colors/components/builder/utils.js","profile":{"total":804,"resolving":364,"restoring":0,"building":440,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":364,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5792,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"chroma-js","loc":"20:0-31","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"91:12-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"92:13-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"93:15-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"94:14-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"191:16-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"210:13-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"252:17-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"254:26-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"254:58-64","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"266:8-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"285:9-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"390:11-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"390:36-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"394:11-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"396:11-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"chroma-js","loc":"20:0-31","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"91:12-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"92:13-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"93:15-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"94:14-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"191:16-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"210:13-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"252:17-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"254:26-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"254:58-64","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"266:8-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"285:9-15","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"390:11-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"390:36-42","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"394:11-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"396:11-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","module":"./node_modules/chroma-js/chroma.js","moduleName":"./node_modules/chroma-js/chroma.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","resolvedModule":"./node_modules/chroma-js/chroma.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"59:67-81","moduleId":5792,"resolvedModuleId":5792},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","module":"./node_modules/chroma-js/chroma.js","moduleName":"./node_modules/chroma-js/chroma.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","resolvedModule":"./node_modules/chroma-js/chroma.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"62:2-6","moduleId":5792,"resolvedModuleId":5792}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: this is used directly at 62:2-6","CommonJS bailout: module.exports is used directly at 59:67-81","Statement (ExpressionStatement) with side effects in source code at 58:0-3225:5","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1677,"sizes":{"javascript":1677},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","name":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","index":350,"preOrderIndex":350,"index2":343,"postOrderIndex":343,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","issuerName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","name":"./src/_js/customizer/colors/components/contextual-menu/index.js","profile":{"total":241,"resolving":131,"restoring":0,"building":110,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":131,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","name":"./src/_js/customizer/colors/components/contextual-menu/style.scss","profile":{"total":7,"resolving":6,"restoring":0,"building":1,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":100,"resolving":1,"restoring":0,"building":99,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3708,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"2:12-158","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"9:17-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"13:15-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"2:12-158","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"9:17-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"13:15-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 3:0-84","ModuleConcatenation bailout: Module uses module.id"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2835,"sizes":{"javascript":2835},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","name":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","index":125,"preOrderIndex":125,"index2":120,"postOrderIndex":120,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","issuerName":"./src/_js/customizer/colors/components/source-colors/style.scss","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","name":"./src/_js/customizer/colors/components/source-colors/style.scss","profile":{"total":16,"resolving":15,"restoring":0,"building":1,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":15,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":153,"resolving":2,"restoring":0,"building":151,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":2,"dependencies":0},"id":9805,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"2:12-158","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"9:17-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"13:15-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"2:12-158","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"9:17-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../../../../node_modules/css-loader/dist/cjs.js!../../../../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"13:15-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 3:0-84","ModuleConcatenation bailout: Module uses module.id"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1605,"sizes":{"javascript":1605},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/runtime/api.js","name":"./node_modules/css-loader/dist/runtime/api.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/runtime/api.js","index":126,"preOrderIndex":126,"index2":119,"postOrderIndex":119,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","issuerName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./src/_js/customizer-preview/style.scss","profile":{"total":352,"resolving":326,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":326,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","profile":{"total":728,"resolving":3,"restoring":0,"building":725,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":946}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3645,"issuerId":946,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../../node_modules/css-loader/dist/runtime/api.js","loc":"2:0-95","moduleId":946,"resolvedModuleId":946},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../node_modules/css-loader/dist/runtime/api.js","loc":"3:30-57","moduleId":946,"resolvedModuleId":946},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../../../../../node_modules/css-loader/dist/runtime/api.js","loc":"2:0-104","moduleId":3708,"resolvedModuleId":3708},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../../../../node_modules/css-loader/dist/runtime/api.js","loc":"3:30-57","moduleId":3708,"resolvedModuleId":3708},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../../../../../node_modules/css-loader/dist/runtime/api.js","loc":"2:0-104","moduleId":9805,"resolvedModuleId":9805},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../../../../node_modules/css-loader/dist/runtime/api.js","loc":"3:30-57","moduleId":9805,"resolvedModuleId":9805},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/runtime/api.js","module":"./node_modules/css-loader/dist/runtime/api.js","moduleName":"./node_modules/css-loader/dist/runtime/api.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/runtime/api.js","resolvedModule":"./node_modules/css-loader/dist/runtime/api.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"9:0-14","moduleId":3645,"resolvedModuleId":3645}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 9:0-14","Statement (ExpressionStatement) with side effects in source code at 9:0-66:2","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":9421,"sizes":{"javascript":9421},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/hsluv/hsluv.js","name":"./node_modules/hsluv/hsluv.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/hsluv/hsluv.js","index":118,"preOrderIndex":118,"index2":113,"postOrderIndex":113,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","issuerName":"./src/_js/customizer/colors/components/builder/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","name":"./src/_js/customizer/colors/components/builder/utils.js","profile":{"total":804,"resolving":364,"restoring":0,"building":440,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":364,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":119,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"hsluv","loc":"19:0-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"hsluv","loc":"278:14-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"hsluv","loc":"282:12-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"hsluv","loc":"19:0-47","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"hsluv","loc":"278:14-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"hsluv","loc":"282:12-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/hsluv/hsluv.js","module":"./node_modules/hsluv/hsluv.js","moduleName":"./node_modules/hsluv/hsluv.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/hsluv/hsluv.js","resolvedModule":"./node_modules/hsluv/hsluv.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"329:0-14","moduleId":119,"resolvedModuleId":119}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 329:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-24","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":210,"sizes":{"javascript":210},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","index":173,"preOrderIndex":173,"index2":156,"postOrderIndex":156,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","module":"./node_modules/lodash/_DataView.js","moduleName":"./node_modules/lodash/_DataView.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","resolvedModule":"./node_modules/lodash/_DataView.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":8552,"resolvedModuleId":8552},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_DataView","loc":"1:15-37","moduleId":4160,"resolvedModuleId":4160}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":747,"sizes":{"javascript":747},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","index":53,"preOrderIndex":53,"index2":53,"postOrderIndex":53,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","issuerName":"./node_modules/lodash/_mapCacheClear.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989,"issuerId":4785,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","module":"./node_modules/lodash/_mapCacheClear.js","moduleName":"./node_modules/lodash/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","resolvedModule":"./node_modules/lodash/_mapCacheClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Hash","loc":"1:11-29","moduleId":4785,"resolvedModuleId":4785}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":869,"sizes":{"javascript":869},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","index":66,"preOrderIndex":66,"index2":61,"postOrderIndex":61,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_ListCache","loc":"1:16-39","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","module":"./node_modules/lodash/_mapCacheClear.js","moduleName":"./node_modules/lodash/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","resolvedModule":"./node_modules/lodash/_mapCacheClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_ListCache","loc":"2:16-39","moduleId":4785,"resolvedModuleId":4785},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","module":"./node_modules/lodash/_stackClear.js","moduleName":"./node_modules/lodash/_stackClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","resolvedModule":"./node_modules/lodash/_stackClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_ListCache","loc":"1:16-39","moduleId":7465,"resolvedModuleId":7465},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","module":"./node_modules/lodash/_stackSet.js","moduleName":"./node_modules/lodash/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","resolvedModule":"./node_modules/lodash/_stackSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_ListCache","loc":"1:16-39","moduleId":4309,"resolvedModuleId":4309}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":195,"sizes":{"javascript":195},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","name":"./node_modules/lodash/_Map.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","index":74,"preOrderIndex":74,"index2":62,"postOrderIndex":62,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7071,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","module":"./node_modules/lodash/_Map.js","moduleName":"./node_modules/lodash/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","resolvedModule":"./node_modules/lodash/_Map.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":7071,"resolvedModuleId":7071},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Map","loc":"2:10-27","moduleId":4160,"resolvedModuleId":4160},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","module":"./node_modules/lodash/_mapCacheClear.js","moduleName":"./node_modules/lodash/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","resolvedModule":"./node_modules/lodash/_mapCacheClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Map","loc":"3:10-27","moduleId":4785,"resolvedModuleId":4785},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","module":"./node_modules/lodash/_stackSet.js","moduleName":"./node_modules/lodash/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","resolvedModule":"./node_modules/lodash/_stackSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Map","loc":"2:10-27","moduleId":4309,"resolvedModuleId":4309}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":869,"sizes":{"javascript":869},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","index":51,"preOrderIndex":51,"index2":70,"postOrderIndex":70,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","issuerName":"./node_modules/lodash/memoize.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369,"issuerId":8306,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","module":"./node_modules/lodash/_SetCache.js","moduleName":"./node_modules/lodash/_SetCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","resolvedModule":"./node_modules/lodash/_SetCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_MapCache","loc":"1:15-37","moduleId":8668,"resolvedModuleId":8668},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","module":"./node_modules/lodash/_stackSet.js","moduleName":"./node_modules/lodash/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","resolvedModule":"./node_modules/lodash/_stackSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_MapCache","loc":"3:15-37","moduleId":4309,"resolvedModuleId":4309},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","module":"./node_modules/lodash/memoize.js","moduleName":"./node_modules/lodash/memoize.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","resolvedModule":"./node_modules/lodash/memoize.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_MapCache","loc":"1:15-37","moduleId":8306,"resolvedModuleId":8306}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":207,"sizes":{"javascript":207},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","name":"./node_modules/lodash/_Promise.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","index":174,"preOrderIndex":174,"index2":157,"postOrderIndex":157,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3818,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","module":"./node_modules/lodash/_Promise.js","moduleName":"./node_modules/lodash/_Promise.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","resolvedModule":"./node_modules/lodash/_Promise.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":3818,"resolvedModuleId":3818},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Promise","loc":"3:14-35","moduleId":4160,"resolvedModuleId":4160}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":195,"sizes":{"javascript":195},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","name":"./node_modules/lodash/_Set.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","index":175,"preOrderIndex":175,"index2":158,"postOrderIndex":158,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8525,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","module":"./node_modules/lodash/_Set.js","moduleName":"./node_modules/lodash/_Set.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","resolvedModule":"./node_modules/lodash/_Set.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":8525,"resolvedModuleId":8525},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Set","loc":"4:10-27","moduleId":4160,"resolvedModuleId":4160}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":632,"sizes":{"javascript":632},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","name":"./node_modules/lodash/_SetCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","index":157,"preOrderIndex":157,"index2":142,"postOrderIndex":142,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","issuerName":"./node_modules/lodash/_equalArrays.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8668,"issuerId":7114,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","module":"./node_modules/lodash/_SetCache.js","moduleName":"./node_modules/lodash/_SetCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","resolvedModule":"./node_modules/lodash/_SetCache.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":8668,"resolvedModuleId":8668},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","module":"./node_modules/lodash/_equalArrays.js","moduleName":"./node_modules/lodash/_equalArrays.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","resolvedModule":"./node_modules/lodash/_equalArrays.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_SetCache","loc":"1:15-37","moduleId":7114,"resolvedModuleId":7114}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":734,"sizes":{"javascript":734},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","index":148,"preOrderIndex":148,"index2":139,"postOrderIndex":139,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","issuerName":"./node_modules/lodash/_baseIsMatch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384,"issuerId":2958,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Stack","loc":"1:12-31","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Stack","loc":"1:12-31","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","module":"./node_modules/lodash/_baseIsMatch.js","moduleName":"./node_modules/lodash/_baseIsMatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","resolvedModule":"./node_modules/lodash/_baseIsMatch.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Stack","loc":"1:12-31","moduleId":2958,"resolvedModuleId":2958}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-6:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":118,"sizes":{"javascript":118},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","name":"./node_modules/lodash/_Symbol.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","index":16,"preOrderIndex":16,"index2":7,"postOrderIndex":7,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","issuerName":"./node_modules/lodash/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","name":"./node_modules/lodash/_baseGetTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4239}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":2705,"issuerId":4239,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","module":"./node_modules/lodash/_Symbol.js","moduleName":"./node_modules/lodash/_Symbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","resolvedModule":"./node_modules/lodash/_Symbol.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":2705,"resolvedModuleId":2705},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","module":"./node_modules/lodash/_baseGetTag.js","moduleName":"./node_modules/lodash/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","resolvedModule":"./node_modules/lodash/_baseGetTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":4239,"resolvedModuleId":4239},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneSymbol.js","module":"./node_modules/lodash/_cloneSymbol.js","moduleName":"./node_modules/lodash/_cloneSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneSymbol.js","resolvedModule":"./node_modules/lodash/_cloneSymbol.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":419,"resolvedModuleId":419},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":8351,"resolvedModuleId":8351},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","module":"./node_modules/lodash/_getRawTag.js","moduleName":"./node_modules/lodash/_getRawTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","resolvedModule":"./node_modules/lodash/_getRawTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":9607,"resolvedModuleId":9607},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","module":"./node_modules/lodash/_isFlattenable.js","moduleName":"./node_modules/lodash/_isFlattenable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","resolvedModule":"./node_modules/lodash/_isFlattenable.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Symbol","loc":"1:13-33","moduleId":7285,"resolvedModuleId":7285}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":130,"sizes":{"javascript":130},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","name":"./node_modules/lodash/_Uint8Array.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","index":163,"preOrderIndex":163,"index2":146,"postOrderIndex":146,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","issuerName":"./node_modules/lodash/_equalByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","name":"./node_modules/lodash/_equalByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8351}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":1149,"issuerId":8351,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","module":"./node_modules/lodash/_Uint8Array.js","moduleName":"./node_modules/lodash/_Uint8Array.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","resolvedModule":"./node_modules/lodash/_Uint8Array.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":1149,"resolvedModuleId":1149},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneArrayBuffer.js","module":"./node_modules/lodash/_cloneArrayBuffer.js","moduleName":"./node_modules/lodash/_cloneArrayBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneArrayBuffer.js","resolvedModule":"./node_modules/lodash/_cloneArrayBuffer.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Uint8Array","loc":"1:17-41","moduleId":4318,"resolvedModuleId":4318},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_Uint8Array","loc":"2:17-41","moduleId":8351,"resolvedModuleId":8351}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":207,"sizes":{"javascript":207},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","name":"./node_modules/lodash/_WeakMap.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","index":176,"preOrderIndex":176,"index2":159,"postOrderIndex":159,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":577,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","module":"./node_modules/lodash/_WeakMap.js","moduleName":"./node_modules/lodash/_WeakMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","resolvedModule":"./node_modules/lodash/_WeakMap.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"7:0-14","moduleId":577,"resolvedModuleId":577},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_WeakMap","loc":"5:14-35","moduleId":4160,"resolvedModuleId":4160}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 7:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":714,"sizes":{"javascript":714},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_apply.js","name":"./node_modules/lodash/_apply.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_apply.js","index":98,"preOrderIndex":98,"index2":93,"postOrderIndex":93,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overRest.js","issuerName":"./node_modules/lodash/_overRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overRest.js","name":"./node_modules/lodash/_overRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5357}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6874,"issuerId":5357,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_apply.js","module":"./node_modules/lodash/_apply.js","moduleName":"./node_modules/lodash/_apply.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_apply.js","resolvedModule":"./node_modules/lodash/_apply.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":6874,"resolvedModuleId":6874},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overRest.js","module":"./node_modules/lodash/_overRest.js","moduleName":"./node_modules/lodash/_overRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overRest.js","resolvedModule":"./node_modules/lodash/_overRest.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_apply","loc":"1:12-31","moduleId":5357,"resolvedModuleId":5357}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (ExpressionStatement) with side effects in source code at 21:0-23","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":537,"sizes":{"javascript":537},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayEach.js","name":"./node_modules/lodash/_arrayEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayEach.js","index":5,"preOrderIndex":5,"index2":1,"postOrderIndex":1,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","issuerName":"./node_modules/lodash/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7412,"issuerId":4486,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayEach.js","module":"./node_modules/lodash/_arrayEach.js","moduleName":"./node_modules/lodash/_arrayEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayEach.js","resolvedModule":"./node_modules/lodash/_arrayEach.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":7412,"resolvedModuleId":7412},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayEach","loc":"2:16-39","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayEach","loc":"1:16-39","moduleId":4486,"resolvedModuleId":4486}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (ExpressionStatement) with side effects in source code at 22:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":632,"sizes":{"javascript":632},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayFilter.js","name":"./node_modules/lodash/_arrayFilter.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayFilter.js","index":170,"preOrderIndex":170,"index2":151,"postOrderIndex":151,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","issuerName":"./node_modules/lodash/_getSymbols.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","name":"./node_modules/lodash/_getSymbols.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9551}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4963,"issuerId":9551,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayFilter.js","module":"./node_modules/lodash/_arrayFilter.js","moduleName":"./node_modules/lodash/_arrayFilter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayFilter.js","resolvedModule":"./node_modules/lodash/_arrayFilter.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":4963,"resolvedModuleId":4963},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","module":"./node_modules/lodash/_getSymbols.js","moduleName":"./node_modules/lodash/_getSymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","resolvedModule":"./node_modules/lodash/_getSymbols.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayFilter","loc":"1:18-43","moduleId":9551,"resolvedModuleId":9551}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (ExpressionStatement) with side effects in source code at 25:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1778,"sizes":{"javascript":1778},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","name":"./node_modules/lodash/_arrayLikeKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","index":11,"preOrderIndex":11,"index2":23,"postOrderIndex":23,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","issuerName":"./node_modules/lodash/keys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","name":"./node_modules/lodash/keys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3674}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4636,"issuerId":3674,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"49:0-14","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","module":"./node_modules/lodash/keys.js","moduleName":"./node_modules/lodash/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","resolvedModule":"./node_modules/lodash/keys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayLikeKeys","loc":"1:20-47","moduleId":3674,"resolvedModuleId":3674},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","module":"./node_modules/lodash/keysIn.js","moduleName":"./node_modules/lodash/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","resolvedModule":"./node_modules/lodash/keysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayLikeKeys","loc":"1:20-47","moduleId":1704,"resolvedModuleId":1704}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 49:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-6:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":556,"sizes":{"javascript":556},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayMap.js","name":"./node_modules/lodash/_arrayMap.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayMap.js","index":83,"preOrderIndex":83,"index2":74,"postOrderIndex":74,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","issuerName":"./node_modules/lodash/_baseValues.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","name":"./node_modules/lodash/values.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2628},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","name":"./node_modules/lodash/_baseValues.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7415}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9932,"issuerId":7415,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayMap.js","module":"./node_modules/lodash/_arrayMap.js","moduleName":"./node_modules/lodash/_arrayMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayMap.js","resolvedModule":"./node_modules/lodash/_arrayMap.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":9932,"resolvedModuleId":9932},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayMap","loc":"2:15-37","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","module":"./node_modules/lodash/_baseValues.js","moduleName":"./node_modules/lodash/_baseValues.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseValues.js","resolvedModule":"./node_modules/lodash/_baseValues.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayMap","loc":"1:15-37","moduleId":7415,"resolvedModuleId":7415},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","module":"./node_modules/lodash/map.js","moduleName":"./node_modules/lodash/map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","resolvedModule":"./node_modules/lodash/map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayMap","loc":"1:15-37","moduleId":5161,"resolvedModuleId":5161}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (ExpressionStatement) with side effects in source code at 21:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":437,"sizes":{"javascript":437},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayPush.js","name":"./node_modules/lodash/_arrayPush.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayPush.js","index":95,"preOrderIndex":95,"index2":89,"postOrderIndex":89,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","issuerName":"./node_modules/lodash/_baseFlatten.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","name":"./node_modules/lodash/flatten.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5564},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","name":"./node_modules/lodash/_baseFlatten.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1078}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":2488,"issuerId":1078,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayPush.js","module":"./node_modules/lodash/_arrayPush.js","moduleName":"./node_modules/lodash/_arrayPush.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayPush.js","resolvedModule":"./node_modules/lodash/_arrayPush.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":2488,"resolvedModuleId":2488},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","module":"./node_modules/lodash/_baseFlatten.js","moduleName":"./node_modules/lodash/_baseFlatten.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","resolvedModule":"./node_modules/lodash/_baseFlatten.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayPush","loc":"1:16-39","moduleId":1078,"resolvedModuleId":1078},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","module":"./node_modules/lodash/_baseGetAllKeys.js","moduleName":"./node_modules/lodash/_baseGetAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","resolvedModule":"./node_modules/lodash/_baseGetAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayPush","loc":"1:16-39","moduleId":8866,"resolvedModuleId":8866},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","module":"./node_modules/lodash/_getSymbolsIn.js","moduleName":"./node_modules/lodash/_getSymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","resolvedModule":"./node_modules/lodash/_getSymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arrayPush","loc":"1:16-39","moduleId":1442,"resolvedModuleId":1442}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (ExpressionStatement) with side effects in source code at 20:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":594,"sizes":{"javascript":594},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arraySome.js","name":"./node_modules/lodash/_arraySome.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arraySome.js","index":160,"preOrderIndex":160,"index2":143,"postOrderIndex":143,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","issuerName":"./node_modules/lodash/_equalArrays.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2908,"issuerId":7114,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arraySome.js","module":"./node_modules/lodash/_arraySome.js","moduleName":"./node_modules/lodash/_arraySome.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arraySome.js","resolvedModule":"./node_modules/lodash/_arraySome.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":2908,"resolvedModuleId":2908},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","module":"./node_modules/lodash/_equalArrays.js","moduleName":"./node_modules/lodash/_equalArrays.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","resolvedModule":"./node_modules/lodash/_equalArrays.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_arraySome","loc":"2:16-39","moduleId":7114,"resolvedModuleId":7114}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (ExpressionStatement) with side effects in source code at 23:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":899,"sizes":{"javascript":899},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","name":"./node_modules/lodash/_assignValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","index":86,"preOrderIndex":86,"index2":82,"postOrderIndex":82,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","issuerName":"./node_modules/lodash/_baseSet.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","name":"./node_modules/lodash/_basePickBy.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3012},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","name":"./node_modules/lodash/_baseSet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":611}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4865,"issuerId":611,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","module":"./node_modules/lodash/_assignValue.js","moduleName":"./node_modules/lodash/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","resolvedModule":"./node_modules/lodash/_assignValue.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"28:0-14","moduleId":4865,"resolvedModuleId":4865},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assignValue","loc":"3:18-43","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assignValue","loc":"1:18-43","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyObject.js","module":"./node_modules/lodash/_copyObject.js","moduleName":"./node_modules/lodash/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyObject.js","resolvedModule":"./node_modules/lodash/_copyObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assignValue","loc":"1:18-43","moduleId":8363,"resolvedModuleId":8363}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 28:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:25","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":487,"sizes":{"javascript":487},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","name":"./node_modules/lodash/_assocIndexOf.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","index":69,"preOrderIndex":69,"index2":56,"postOrderIndex":56,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","issuerName":"./node_modules/lodash/_listCacheDelete.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","name":"./node_modules/lodash/_listCacheDelete.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4125}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8470,"issuerId":4125,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","module":"./node_modules/lodash/_assocIndexOf.js","moduleName":"./node_modules/lodash/_assocIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","resolvedModule":"./node_modules/lodash/_assocIndexOf.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":8470,"resolvedModuleId":8470},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","module":"./node_modules/lodash/_listCacheDelete.js","moduleName":"./node_modules/lodash/_listCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","resolvedModule":"./node_modules/lodash/_listCacheDelete.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assocIndexOf","loc":"1:19-45","moduleId":4125,"resolvedModuleId":4125},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","module":"./node_modules/lodash/_listCacheGet.js","moduleName":"./node_modules/lodash/_listCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","resolvedModule":"./node_modules/lodash/_listCacheGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assocIndexOf","loc":"1:19-45","moduleId":2117,"resolvedModuleId":2117},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","module":"./node_modules/lodash/_listCacheHas.js","moduleName":"./node_modules/lodash/_listCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","resolvedModule":"./node_modules/lodash/_listCacheHas.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assocIndexOf","loc":"1:19-45","moduleId":7529,"resolvedModuleId":7529},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","module":"./node_modules/lodash/_listCacheSet.js","moduleName":"./node_modules/lodash/_listCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","resolvedModule":"./node_modules/lodash/_listCacheSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_assocIndexOf","loc":"1:19-45","moduleId":4705,"resolvedModuleId":4705}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-25","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":470,"sizes":{"javascript":470},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","name":"./node_modules/lodash/_baseAssign.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","index":189,"preOrderIndex":189,"index2":178,"postOrderIndex":178,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4037,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","module":"./node_modules/lodash/_baseAssign.js","moduleName":"./node_modules/lodash/_baseAssign.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","resolvedModule":"./node_modules/lodash/_baseAssign.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"17:0-14","moduleId":4037,"resolvedModuleId":4037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseAssign","loc":"4:17-41","moduleId":5990,"resolvedModuleId":5990}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 17:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":482,"sizes":{"javascript":482},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignIn.js","name":"./node_modules/lodash/_baseAssignIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignIn.js","index":191,"preOrderIndex":191,"index2":182,"postOrderIndex":182,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3886,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignIn.js","module":"./node_modules/lodash/_baseAssignIn.js","moduleName":"./node_modules/lodash/_baseAssignIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignIn.js","resolvedModule":"./node_modules/lodash/_baseAssignIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"17:0-14","moduleId":3886,"resolvedModuleId":3886},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseAssignIn","loc":"5:19-45","moduleId":5990,"resolvedModuleId":5990}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 17:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:33","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":625,"sizes":{"javascript":625},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignValue.js","name":"./node_modules/lodash/_baseAssignValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignValue.js","index":87,"preOrderIndex":87,"index2":81,"postOrderIndex":81,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","issuerName":"./node_modules/lodash/_assignValue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","name":"./node_modules/lodash/_basePickBy.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3012},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","name":"./node_modules/lodash/_baseSet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":611},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","name":"./node_modules/lodash/_assignValue.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4865}],"failed":false,"errors":0,"warnings":0,"profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":1,"dependencies":1},"id":9465,"issuerId":4865,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","module":"./node_modules/lodash/_assignValue.js","moduleName":"./node_modules/lodash/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","resolvedModule":"./node_modules/lodash/_assignValue.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseAssignValue","loc":"1:22-51","moduleId":4865,"resolvedModuleId":4865},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignValue.js","module":"./node_modules/lodash/_baseAssignValue.js","moduleName":"./node_modules/lodash/_baseAssignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignValue.js","resolvedModule":"./node_modules/lodash/_baseAssignValue.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":9465,"resolvedModuleId":9465},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyObject.js","module":"./node_modules/lodash/_copyObject.js","moduleName":"./node_modules/lodash/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyObject.js","resolvedModule":"./node_modules/lodash/_copyObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseAssignValue","loc":"2:22-51","moduleId":8363,"resolvedModuleId":8363}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-50","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":5609,"sizes":{"javascript":5609},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","index":188,"preOrderIndex":188,"index2":202,"postOrderIndex":202,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","issuerName":"./node_modules/lodash/cloneDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990,"issuerId":361,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"166:0-14","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","module":"./node_modules/lodash/cloneDeep.js","moduleName":"./node_modules/lodash/cloneDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","resolvedModule":"./node_modules/lodash/cloneDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseClone","loc":"1:16-39","moduleId":361,"resolvedModuleId":361}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 166:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-22:33","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":686,"sizes":{"javascript":686},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","name":"./node_modules/lodash/_baseCreate.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","index":209,"preOrderIndex":209,"index2":196,"postOrderIndex":196,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","issuerName":"./node_modules/lodash/_initCloneObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","name":"./node_modules/lodash/_initCloneObject.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8517}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3118,"issuerId":8517,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","module":"./node_modules/lodash/_baseCreate.js","moduleName":"./node_modules/lodash/_baseCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","resolvedModule":"./node_modules/lodash/_baseCreate.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":3118,"resolvedModuleId":3118},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","module":"./node_modules/lodash/_initCloneObject.js","moduleName":"./node_modules/lodash/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","resolvedModule":"./node_modules/lodash/_initCloneObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseCreate","loc":"1:17-41","moduleId":8517,"resolvedModuleId":8517}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":455,"sizes":{"javascript":455},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","index":6,"preOrderIndex":6,"index2":34,"postOrderIndex":34,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","issuerName":"./node_modules/lodash/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881,"issuerId":4486,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","module":"./node_modules/lodash/_baseEach.js","moduleName":"./node_modules/lodash/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","resolvedModule":"./node_modules/lodash/_baseEach.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":9881,"resolvedModuleId":9881},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","module":"./node_modules/lodash/_baseMap.js","moduleName":"./node_modules/lodash/_baseMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","resolvedModule":"./node_modules/lodash/_baseMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseEach","loc":"1:15-37","moduleId":9199,"resolvedModuleId":9199},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseEach","loc":"2:15-37","moduleId":4486,"resolvedModuleId":4486}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:50","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1201,"sizes":{"javascript":1201},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","name":"./node_modules/lodash/_baseFlatten.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","index":94,"preOrderIndex":94,"index2":91,"postOrderIndex":91,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","issuerName":"./node_modules/lodash/flatten.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","name":"./node_modules/lodash/flatten.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5564}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1078,"issuerId":5564,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","module":"./node_modules/lodash/_baseFlatten.js","moduleName":"./node_modules/lodash/_baseFlatten.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","resolvedModule":"./node_modules/lodash/_baseFlatten.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"38:0-14","moduleId":1078,"resolvedModuleId":1078},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","module":"./node_modules/lodash/flatten.js","moduleName":"./node_modules/lodash/flatten.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","resolvedModule":"./node_modules/lodash/flatten.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseFlatten","loc":"1:18-43","moduleId":5564,"resolvedModuleId":5564}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 38:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:48","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":593,"sizes":{"javascript":593},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","name":"./node_modules/lodash/_baseFor.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","index":8,"preOrderIndex":8,"index2":3,"postOrderIndex":3,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","issuerName":"./node_modules/lodash/_baseForOwn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","name":"./node_modules/lodash/_baseForOwn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7816}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8483,"issuerId":7816,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","module":"./node_modules/lodash/_baseFor.js","moduleName":"./node_modules/lodash/_baseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","resolvedModule":"./node_modules/lodash/_baseFor.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":8483,"resolvedModuleId":8483},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","module":"./node_modules/lodash/_baseForOwn.js","moduleName":"./node_modules/lodash/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","resolvedModule":"./node_modules/lodash/_baseForOwn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseFor","loc":"1:14-35","moduleId":7816,"resolvedModuleId":7816}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-48","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":456,"sizes":{"javascript":456},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","name":"./node_modules/lodash/_baseForOwn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","index":7,"preOrderIndex":7,"index2":32,"postOrderIndex":32,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","issuerName":"./node_modules/lodash/_baseEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7816,"issuerId":9881,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","module":"./node_modules/lodash/_baseEach.js","moduleName":"./node_modules/lodash/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","resolvedModule":"./node_modules/lodash/_baseEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseForOwn","loc":"1:17-41","moduleId":9881,"resolvedModuleId":9881},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","module":"./node_modules/lodash/_baseForOwn.js","moduleName":"./node_modules/lodash/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","resolvedModule":"./node_modules/lodash/_baseForOwn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":7816,"resolvedModuleId":7816},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","module":"./node_modules/lodash/forOwn.js","moduleName":"./node_modules/lodash/forOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","resolvedModule":"./node_modules/lodash/forOwn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseForOwn","loc":"1:17-41","moduleId":2525,"resolvedModuleId":2525}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":616,"sizes":{"javascript":616},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","name":"./node_modules/lodash/_baseGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","index":44,"preOrderIndex":44,"index2":79,"postOrderIndex":79,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","issuerName":"./node_modules/lodash/_basePickBy.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","name":"./node_modules/lodash/_basePickBy.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3012}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":7786,"issuerId":3012,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","module":"./node_modules/lodash/_baseGet.js","moduleName":"./node_modules/lodash/_baseGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","resolvedModule":"./node_modules/lodash/_baseGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"24:0-14","moduleId":7786,"resolvedModuleId":7786},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","module":"./node_modules/lodash/_basePickBy.js","moduleName":"./node_modules/lodash/_basePickBy.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","resolvedModule":"./node_modules/lodash/_basePickBy.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGet","loc":"1:14-35","moduleId":3012,"resolvedModuleId":3012},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","module":"./node_modules/lodash/_basePropertyDeep.js","moduleName":"./node_modules/lodash/_basePropertyDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","resolvedModule":"./node_modules/lodash/_basePropertyDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGet","loc":"1:14-35","moduleId":9152,"resolvedModuleId":9152},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","module":"./node_modules/lodash/get.js","moduleName":"./node_modules/lodash/get.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","resolvedModule":"./node_modules/lodash/get.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGet","loc":"1:14-35","moduleId":7361,"resolvedModuleId":7361}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 24:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":739,"sizes":{"javascript":739},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","name":"./node_modules/lodash/_baseGetAllKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","index":168,"preOrderIndex":168,"index2":150,"postOrderIndex":150,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","issuerName":"./node_modules/lodash/_getAllKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":8866,"issuerId":8234,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","module":"./node_modules/lodash/_baseGetAllKeys.js","moduleName":"./node_modules/lodash/_baseGetAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","resolvedModule":"./node_modules/lodash/_baseGetAllKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":8866,"resolvedModuleId":8866},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","module":"./node_modules/lodash/_getAllKeys.js","moduleName":"./node_modules/lodash/_getAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","resolvedModule":"./node_modules/lodash/_getAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetAllKeys","loc":"1:21-49","moduleId":8234,"resolvedModuleId":8234},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","module":"./node_modules/lodash/_getAllKeysIn.js","moduleName":"./node_modules/lodash/_getAllKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","resolvedModule":"./node_modules/lodash/_getAllKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetAllKeys","loc":"1:21-49","moduleId":6904,"resolvedModuleId":6904}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":792,"sizes":{"javascript":792},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","name":"./node_modules/lodash/_baseGetTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","index":15,"preOrderIndex":15,"index2":10,"postOrderIndex":10,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","issuerName":"./node_modules/lodash/isString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4239,"issuerId":7037,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","module":"./node_modules/lodash/_baseGetTag.js","moduleName":"./node_modules/lodash/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","resolvedModule":"./node_modules/lodash/_baseGetTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"28:0-14","moduleId":4239,"resolvedModuleId":4239},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","module":"./node_modules/lodash/_baseIsArguments.js","moduleName":"./node_modules/lodash/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","resolvedModule":"./node_modules/lodash/_baseIsArguments.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":9454,"resolvedModuleId":9454},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","module":"./node_modules/lodash/_baseIsTypedArray.js","moduleName":"./node_modules/lodash/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash/_baseIsTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":8749,"resolvedModuleId":8749},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"6:17-41","moduleId":4160,"resolvedModuleId":4160},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","module":"./node_modules/lodash/isFunction.js","moduleName":"./node_modules/lodash/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","resolvedModule":"./node_modules/lodash/isFunction.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":3560,"resolvedModuleId":3560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","module":"./node_modules/lodash/isNumber.js","moduleName":"./node_modules/lodash/isNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","resolvedModule":"./node_modules/lodash/isNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":1763,"resolvedModuleId":1763},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","module":"./node_modules/lodash/isPlainObject.js","moduleName":"./node_modules/lodash/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","resolvedModule":"./node_modules/lodash/isPlainObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":8630,"resolvedModuleId":8630},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","module":"./node_modules/lodash/isString.js","moduleName":"./node_modules/lodash/isString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","resolvedModule":"./node_modules/lodash/isString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":7037,"resolvedModuleId":7037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","module":"./node_modules/lodash/isSymbol.js","moduleName":"./node_modules/lodash/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","resolvedModule":"./node_modules/lodash/isSymbol.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseGetTag","loc":"1:17-41","moduleId":3448,"resolvedModuleId":3448}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 28:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:50","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":374,"sizes":{"javascript":374},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHasIn.js","name":"./node_modules/lodash/_baseHasIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHasIn.js","index":90,"preOrderIndex":90,"index2":85,"postOrderIndex":85,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","issuerName":"./node_modules/lodash/hasIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","name":"./node_modules/lodash/hasIn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":9095}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":13,"issuerId":9095,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHasIn.js","module":"./node_modules/lodash/_baseHasIn.js","moduleName":"./node_modules/lodash/_baseHasIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseHasIn.js","resolvedModule":"./node_modules/lodash/_baseHasIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"13:0-14","moduleId":13,"resolvedModuleId":13},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","module":"./node_modules/lodash/hasIn.js","moduleName":"./node_modules/lodash/hasIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","resolvedModule":"./node_modules/lodash/hasIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseHasIn","loc":"1:16-39","moduleId":9095,"resolvedModuleId":9095}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 13:0-14","Statement (ExpressionStatement) with side effects in source code at 13:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":488,"sizes":{"javascript":488},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","name":"./node_modules/lodash/_baseIsArguments.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","index":14,"preOrderIndex":14,"index2":12,"postOrderIndex":12,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","issuerName":"./node_modules/lodash/isArguments.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","name":"./node_modules/lodash/isArguments.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":5694}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9454,"issuerId":5694,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","module":"./node_modules/lodash/_baseIsArguments.js","moduleName":"./node_modules/lodash/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","resolvedModule":"./node_modules/lodash/_baseIsArguments.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":9454,"resolvedModuleId":9454},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","module":"./node_modules/lodash/isArguments.js","moduleName":"./node_modules/lodash/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","resolvedModule":"./node_modules/lodash/isArguments.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsArguments","loc":"1:22-51","moduleId":5694,"resolvedModuleId":5694}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1019,"sizes":{"javascript":1019},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","index":154,"preOrderIndex":154,"index2":162,"postOrderIndex":162,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","issuerName":"./node_modules/lodash/_baseMatchesProperty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432}],"failed":false,"errors":0,"warnings":0,"profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939,"issuerId":6432,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","module":"./node_modules/lodash/_baseIsEqual.js","moduleName":"./node_modules/lodash/_baseIsEqual.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","resolvedModule":"./node_modules/lodash/_baseIsEqual.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"28:0-14","moduleId":939,"resolvedModuleId":939},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","module":"./node_modules/lodash/_baseIsMatch.js","moduleName":"./node_modules/lodash/_baseIsMatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","resolvedModule":"./node_modules/lodash/_baseIsMatch.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsEqual","loc":"2:18-43","moduleId":2958,"resolvedModuleId":2958},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsEqual","loc":"1:18-43","moduleId":6432,"resolvedModuleId":6432}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 28:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3010,"sizes":{"javascript":3010},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","index":155,"preOrderIndex":155,"index2":161,"postOrderIndex":161,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","issuerName":"./node_modules/lodash/_baseIsEqual.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492,"issuerId":939,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","module":"./node_modules/lodash/_baseIsEqual.js","moduleName":"./node_modules/lodash/_baseIsEqual.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","resolvedModule":"./node_modules/lodash/_baseIsEqual.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsEqualDeep","loc":"1:22-51","moduleId":939,"resolvedModuleId":939},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"83:0-14","moduleId":2492,"resolvedModuleId":2492}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 83:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-8:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":478,"sizes":{"javascript":478},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","name":"./node_modules/lodash/_baseIsMap.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","index":211,"preOrderIndex":211,"index2":198,"postOrderIndex":198,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","issuerName":"./node_modules/lodash/isMap.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","name":"./node_modules/lodash/isMap.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6688}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5588,"issuerId":6688,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","module":"./node_modules/lodash/_baseIsMap.js","moduleName":"./node_modules/lodash/_baseIsMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","resolvedModule":"./node_modules/lodash/_baseIsMap.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":5588,"resolvedModuleId":5588},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","module":"./node_modules/lodash/isMap.js","moduleName":"./node_modules/lodash/isMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","resolvedModule":"./node_modules/lodash/isMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsMap","loc":"1:16-39","moduleId":6688,"resolvedModuleId":6688}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1765,"sizes":{"javascript":1765},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","index":147,"preOrderIndex":147,"index2":163,"postOrderIndex":163,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","issuerName":"./node_modules/lodash/_baseMatches.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958,"issuerId":1573,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","module":"./node_modules/lodash/_baseIsMatch.js","moduleName":"./node_modules/lodash/_baseIsMatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","resolvedModule":"./node_modules/lodash/_baseIsMatch.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"62:0-14","moduleId":2958,"resolvedModuleId":2958},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","module":"./node_modules/lodash/_baseMatches.js","moduleName":"./node_modules/lodash/_baseMatches.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","resolvedModule":"./node_modules/lodash/_baseMatches.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsMatch","loc":"1:18-43","moduleId":1573,"resolvedModuleId":1573}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 62:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1417,"sizes":{"javascript":1417},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","name":"./node_modules/lodash/_baseIsNative.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","index":57,"preOrderIndex":57,"index2":44,"postOrderIndex":44,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","issuerName":"./node_modules/lodash/_getNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8458,"issuerId":852,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"47:0-14","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","module":"./node_modules/lodash/_getNative.js","moduleName":"./node_modules/lodash/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","resolvedModule":"./node_modules/lodash/_getNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsNative","loc":"1:19-45","moduleId":852,"resolvedModuleId":852}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 47:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":478,"sizes":{"javascript":478},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","name":"./node_modules/lodash/_baseIsSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","index":213,"preOrderIndex":213,"index2":200,"postOrderIndex":200,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","issuerName":"./node_modules/lodash/isSet.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","name":"./node_modules/lodash/isSet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2928}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9221,"issuerId":2928,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","module":"./node_modules/lodash/_baseIsSet.js","moduleName":"./node_modules/lodash/_baseIsSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","resolvedModule":"./node_modules/lodash/_baseIsSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":9221,"resolvedModuleId":9221},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","module":"./node_modules/lodash/isSet.js","moduleName":"./node_modules/lodash/isSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","resolvedModule":"./node_modules/lodash/isSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsSet","loc":"1:16-39","moduleId":2928,"resolvedModuleId":2928}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2222,"sizes":{"javascript":2222},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","name":"./node_modules/lodash/_baseIsTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","index":27,"preOrderIndex":27,"index2":19,"postOrderIndex":19,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","issuerName":"./node_modules/lodash/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","name":"./node_modules/lodash/isTypedArray.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6719}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8749,"issuerId":6719,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","module":"./node_modules/lodash/_baseIsTypedArray.js","moduleName":"./node_modules/lodash/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash/_baseIsTypedArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"60:0-14","moduleId":8749,"resolvedModuleId":8749},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","module":"./node_modules/lodash/isTypedArray.js","moduleName":"./node_modules/lodash/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","resolvedModule":"./node_modules/lodash/isTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIsTypedArray","loc":"1:23-53","moduleId":6719,"resolvedModuleId":6719}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 60:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":895,"sizes":{"javascript":895},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","index":145,"preOrderIndex":145,"index2":173,"postOrderIndex":173,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","issuerName":"./node_modules/lodash/_createFind.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206,"issuerId":7740,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"31:0-14","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","module":"./node_modules/lodash/_createFind.js","moduleName":"./node_modules/lodash/_createFind.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","resolvedModule":"./node_modules/lodash/_createFind.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIteratee","loc":"1:19-45","moduleId":7740,"resolvedModuleId":7740},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","module":"./node_modules/lodash/findIndex.js","moduleName":"./node_modules/lodash/findIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/findIndex.js","resolvedModule":"./node_modules/lodash/findIndex.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIteratee","loc":"2:19-45","moduleId":998,"resolvedModuleId":998},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","module":"./node_modules/lodash/map.js","moduleName":"./node_modules/lodash/map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","resolvedModule":"./node_modules/lodash/map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseIteratee","loc":"2:19-45","moduleId":5161,"resolvedModuleId":5161}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 31:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":776,"sizes":{"javascript":776},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","name":"./node_modules/lodash/_baseKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","index":31,"preOrderIndex":31,"index2":27,"postOrderIndex":27,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":280,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","module":"./node_modules/lodash/_baseKeys.js","moduleName":"./node_modules/lodash/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","resolvedModule":"./node_modules/lodash/_baseKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":280,"resolvedModuleId":280},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseKeys","loc":"1:15-37","moduleId":1609,"resolvedModuleId":1609},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","module":"./node_modules/lodash/keys.js","moduleName":"./node_modules/lodash/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","resolvedModule":"./node_modules/lodash/keys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseKeys","loc":"2:15-37","moduleId":3674,"resolvedModuleId":3674}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":870,"sizes":{"javascript":870},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","name":"./node_modules/lodash/_baseKeysIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","index":193,"preOrderIndex":193,"index2":180,"postOrderIndex":180,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","issuerName":"./node_modules/lodash/keysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","name":"./node_modules/lodash/keysIn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1704}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":313,"issuerId":1704,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","module":"./node_modules/lodash/_baseKeysIn.js","moduleName":"./node_modules/lodash/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","resolvedModule":"./node_modules/lodash/_baseKeysIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"33:0-14","moduleId":313,"resolvedModuleId":313},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","module":"./node_modules/lodash/keysIn.js","moduleName":"./node_modules/lodash/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","resolvedModule":"./node_modules/lodash/keysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseKeysIn","loc":"2:17-41","moduleId":1704,"resolvedModuleId":1704}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 33:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":668,"sizes":{"javascript":668},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","name":"./node_modules/lodash/_baseMap.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","index":185,"preOrderIndex":185,"index2":174,"postOrderIndex":174,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","issuerName":"./node_modules/lodash/map.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","name":"./node_modules/reactcss/lib/flattenNames.js","profile":{"total":26,"resolving":8,"restoring":0,"building":18,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":4147},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","name":"./node_modules/lodash/map.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5161}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9199,"issuerId":5161,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","module":"./node_modules/lodash/_baseMap.js","moduleName":"./node_modules/lodash/_baseMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","resolvedModule":"./node_modules/lodash/_baseMap.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":9199,"resolvedModuleId":9199},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","module":"./node_modules/lodash/map.js","moduleName":"./node_modules/lodash/map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","resolvedModule":"./node_modules/lodash/map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseMap","loc":"3:14-35","moduleId":5161,"resolvedModuleId":5161}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:43","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":710,"sizes":{"javascript":710},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","index":146,"preOrderIndex":146,"index2":167,"postOrderIndex":167,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","issuerName":"./node_modules/lodash/_baseIteratee.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573,"issuerId":7206,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseMatches","loc":"1:18-43","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","module":"./node_modules/lodash/_baseMatches.js","moduleName":"./node_modules/lodash/_baseMatches.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","resolvedModule":"./node_modules/lodash/_baseMatches.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":1573,"resolvedModuleId":1573}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:68","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1129,"sizes":{"javascript":1129},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","index":180,"preOrderIndex":180,"index2":169,"postOrderIndex":169,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","issuerName":"./node_modules/lodash/_baseIteratee.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432,"issuerId":7206,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseMatchesProperty","loc":"2:26-59","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"33:0-14","moduleId":6432,"resolvedModuleId":6432}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 33:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-7:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":501,"sizes":{"javascript":501},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","index":42,"preOrderIndex":42,"index2":88,"postOrderIndex":88,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","issuerName":"./node_modules/lodash/pick.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970,"issuerId":8718,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","module":"./node_modules/lodash/_basePick.js","moduleName":"./node_modules/lodash/_basePick.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","resolvedModule":"./node_modules/lodash/_basePick.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":5970,"resolvedModuleId":5970},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","module":"./node_modules/lodash/pick.js","moduleName":"./node_modules/lodash/pick.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","resolvedModule":"./node_modules/lodash/pick.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_basePick","loc":"1:15-37","moduleId":8718,"resolvedModuleId":8718}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:31","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":791,"sizes":{"javascript":791},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","name":"./node_modules/lodash/_basePickBy.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","index":43,"preOrderIndex":43,"index2":84,"postOrderIndex":84,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","issuerName":"./node_modules/lodash/_basePick.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3012,"issuerId":5970,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","module":"./node_modules/lodash/_basePick.js","moduleName":"./node_modules/lodash/_basePick.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","resolvedModule":"./node_modules/lodash/_basePick.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_basePickBy","loc":"1:17-41","moduleId":5970,"resolvedModuleId":5970},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","module":"./node_modules/lodash/_basePickBy.js","moduleName":"./node_modules/lodash/_basePickBy.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","resolvedModule":"./node_modules/lodash/_basePickBy.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":3012,"resolvedModuleId":3012}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":360,"sizes":{"javascript":360},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseProperty.js","name":"./node_modules/lodash/_baseProperty.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseProperty.js","index":183,"preOrderIndex":183,"index2":170,"postOrderIndex":170,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","issuerName":"./node_modules/lodash/property.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","name":"./node_modules/lodash/property.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9601}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":371,"issuerId":9601,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseProperty.js","module":"./node_modules/lodash/_baseProperty.js","moduleName":"./node_modules/lodash/_baseProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseProperty.js","resolvedModule":"./node_modules/lodash/_baseProperty.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":371,"resolvedModuleId":371},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseProperty","loc":"1:19-45","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":391,"sizes":{"javascript":391},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","name":"./node_modules/lodash/_basePropertyDeep.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","index":184,"preOrderIndex":184,"index2":171,"postOrderIndex":171,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","issuerName":"./node_modules/lodash/property.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","name":"./node_modules/lodash/property.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9601}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9152,"issuerId":9601,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","module":"./node_modules/lodash/_basePropertyDeep.js","moduleName":"./node_modules/lodash/_basePropertyDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePropertyDeep.js","resolvedModule":"./node_modules/lodash/_basePropertyDeep.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":9152,"resolvedModuleId":9152},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_basePropertyDeep","loc":"2:23-53","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1385,"sizes":{"javascript":1385},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","name":"./node_modules/lodash/_baseSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","index":85,"preOrderIndex":85,"index2":83,"postOrderIndex":83,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","issuerName":"./node_modules/lodash/_basePickBy.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","name":"./node_modules/lodash/_basePickBy.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3012}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":611,"issuerId":3012,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","module":"./node_modules/lodash/_basePickBy.js","moduleName":"./node_modules/lodash/_basePickBy.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","resolvedModule":"./node_modules/lodash/_basePickBy.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseSet","loc":"2:14-35","moduleId":3012,"resolvedModuleId":3012},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"51:0-14","moduleId":611,"resolvedModuleId":611}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 51:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":641,"sizes":{"javascript":641},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","name":"./node_modules/lodash/_baseSetToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","index":100,"preOrderIndex":100,"index2":96,"postOrderIndex":96,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","issuerName":"./node_modules/lodash/_setToString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","name":"./node_modules/lodash/_setToString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":61}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6560,"issuerId":61,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","module":"./node_modules/lodash/_baseSetToString.js","moduleName":"./node_modules/lodash/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","resolvedModule":"./node_modules/lodash/_baseSetToString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":6560,"resolvedModuleId":6560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","module":"./node_modules/lodash/_setToString.js","moduleName":"./node_modules/lodash/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","resolvedModule":"./node_modules/lodash/_setToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseSetToString","loc":"1:22-51","moduleId":61,"resolvedModuleId":61}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":504,"sizes":{"javascript":504},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTimes.js","name":"./node_modules/lodash/_baseTimes.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTimes.js","index":12,"preOrderIndex":12,"index2":4,"postOrderIndex":4,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","issuerName":"./node_modules/lodash/_arrayLikeKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","name":"./node_modules/lodash/keys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3674},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","name":"./node_modules/lodash/_arrayLikeKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4636}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2545,"issuerId":4636,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseTimes","loc":"1:16-39","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTimes.js","module":"./node_modules/lodash/_baseTimes.js","moduleName":"./node_modules/lodash/_baseTimes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTimes.js","resolvedModule":"./node_modules/lodash/_baseTimes.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":2545,"resolvedModuleId":2545}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (ExpressionStatement) with side effects in source code at 20:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1154,"sizes":{"javascript":1154},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","name":"./node_modules/lodash/_baseToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","index":82,"preOrderIndex":82,"index2":75,"postOrderIndex":75,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","issuerName":"./node_modules/lodash/toString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","name":"./node_modules/lodash/toString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9833}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":531,"issuerId":9833,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","module":"./node_modules/lodash/toString.js","moduleName":"./node_modules/lodash/toString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","resolvedModule":"./node_modules/lodash/toString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseToString","loc":"1:19-45","moduleId":9833,"resolvedModuleId":9833}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":444,"sizes":{"javascript":444},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","name":"./node_modules/lodash/_baseTrim.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","index":113,"preOrderIndex":113,"index2":110,"postOrderIndex":110,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","issuerName":"./node_modules/lodash/toNumber.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","name":"./node_modules/lodash/toNumber.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":4841}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7561,"issuerId":4841,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","module":"./node_modules/lodash/_baseTrim.js","moduleName":"./node_modules/lodash/_baseTrim.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","resolvedModule":"./node_modules/lodash/_baseTrim.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":7561,"resolvedModuleId":7561},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseTrim","loc":"1:15-37","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-52","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":332,"sizes":{"javascript":332},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseUnary.js","name":"./node_modules/lodash/_baseUnary.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseUnary.js","index":29,"preOrderIndex":29,"index2":20,"postOrderIndex":20,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","issuerName":"./node_modules/lodash/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","name":"./node_modules/lodash/isTypedArray.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6719}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":7518,"issuerId":6719,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseUnary.js","module":"./node_modules/lodash/_baseUnary.js","moduleName":"./node_modules/lodash/_baseUnary.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseUnary.js","resolvedModule":"./node_modules/lodash/_baseUnary.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":7518,"resolvedModuleId":7518},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","module":"./node_modules/lodash/isMap.js","moduleName":"./node_modules/lodash/isMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","resolvedModule":"./node_modules/lodash/isMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseUnary","loc":"2:16-39","moduleId":6688,"resolvedModuleId":6688},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","module":"./node_modules/lodash/isSet.js","moduleName":"./node_modules/lodash/isSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","resolvedModule":"./node_modules/lodash/isSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseUnary","loc":"2:16-39","moduleId":2928,"resolvedModuleId":2928},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","module":"./node_modules/lodash/isTypedArray.js","moduleName":"./node_modules/lodash/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","resolvedModule":"./node_modules/lodash/isTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_baseUnary","loc":"2:16-39","moduleId":6719,"resolvedModuleId":6719}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":337,"sizes":{"javascript":337},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cacheHas.js","name":"./node_modules/lodash/_cacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cacheHas.js","index":161,"preOrderIndex":161,"index2":144,"postOrderIndex":144,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","issuerName":"./node_modules/lodash/_equalArrays.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4757,"issuerId":7114,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cacheHas.js","module":"./node_modules/lodash/_cacheHas.js","moduleName":"./node_modules/lodash/_cacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cacheHas.js","resolvedModule":"./node_modules/lodash/_cacheHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"13:0-14","moduleId":4757,"resolvedModuleId":4757},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","module":"./node_modules/lodash/_equalArrays.js","moduleName":"./node_modules/lodash/_equalArrays.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","resolvedModule":"./node_modules/lodash/_equalArrays.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cacheHas","loc":"3:15-37","moduleId":7114,"resolvedModuleId":7114}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 13:0-14","Statement (ExpressionStatement) with side effects in source code at 13:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":326,"sizes":{"javascript":326},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","name":"./node_modules/lodash/_castFunction.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","index":39,"preOrderIndex":39,"index2":36,"postOrderIndex":36,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","issuerName":"./node_modules/lodash/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4290,"issuerId":4486,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","module":"./node_modules/lodash/_castFunction.js","moduleName":"./node_modules/lodash/_castFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","resolvedModule":"./node_modules/lodash/_castFunction.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":4290,"resolvedModuleId":4290},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castFunction","loc":"3:19-45","moduleId":4486,"resolvedModuleId":4486},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","module":"./node_modules/lodash/forOwn.js","moduleName":"./node_modules/lodash/forOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","resolvedModule":"./node_modules/lodash/forOwn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castFunction","loc":"2:19-45","moduleId":2525,"resolvedModuleId":2525}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":569,"sizes":{"javascript":569},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","index":45,"preOrderIndex":45,"index2":77,"postOrderIndex":77,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","issuerName":"./node_modules/lodash/_hasPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811,"issuerId":222,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","module":"./node_modules/lodash/_baseGet.js","moduleName":"./node_modules/lodash/_baseGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","resolvedModule":"./node_modules/lodash/_baseGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castPath","loc":"1:15-37","moduleId":7786,"resolvedModuleId":7786},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","module":"./node_modules/lodash/_basePickBy.js","moduleName":"./node_modules/lodash/_basePickBy.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","resolvedModule":"./node_modules/lodash/_basePickBy.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castPath","loc":"3:15-37","moduleId":3012,"resolvedModuleId":3012},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castPath","loc":"2:15-37","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_castPath","loc":"1:15-37","moduleId":222,"resolvedModuleId":222}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":449,"sizes":{"javascript":449},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneArrayBuffer.js","name":"./node_modules/lodash/_cloneArrayBuffer.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneArrayBuffer.js","index":203,"preOrderIndex":203,"index2":190,"postOrderIndex":190,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","issuerName":"./node_modules/lodash/_initCloneByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","name":"./node_modules/lodash/_initCloneByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9148}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4318,"issuerId":9148,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneArrayBuffer.js","module":"./node_modules/lodash/_cloneArrayBuffer.js","moduleName":"./node_modules/lodash/_cloneArrayBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneArrayBuffer.js","resolvedModule":"./node_modules/lodash/_cloneArrayBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":4318,"resolvedModuleId":4318},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneDataView.js","module":"./node_modules/lodash/_cloneDataView.js","moduleName":"./node_modules/lodash/_cloneDataView.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneDataView.js","resolvedModule":"./node_modules/lodash/_cloneDataView.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cloneArrayBuffer","loc":"1:23-53","moduleId":7157,"resolvedModuleId":7157},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneTypedArray.js","module":"./node_modules/lodash/_cloneTypedArray.js","moduleName":"./node_modules/lodash/_cloneTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneTypedArray.js","resolvedModule":"./node_modules/lodash/_cloneTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cloneArrayBuffer","loc":"1:23-53","moduleId":7133,"resolvedModuleId":7133},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","module":"./node_modules/lodash/_initCloneByTag.js","moduleName":"./node_modules/lodash/_initCloneByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","resolvedModule":"./node_modules/lodash/_initCloneByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cloneArrayBuffer","loc":"1:23-53","moduleId":9148,"resolvedModuleId":9148}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1056,"sizes":{"javascript":1056},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","name":"./node_modules/lodash/_cloneBuffer.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","index":195,"preOrderIndex":195,"index2":183,"postOrderIndex":183,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4626,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cloneBuffer","loc":"6:18-43","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:48-55","moduleId":4626,"resolvedModuleId":4626},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:60-76","moduleId":4626,"resolvedModuleId":4626},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:80-87","moduleId":4626,"resolvedModuleId":4626},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:61-67","moduleId":4626,"resolvedModuleId":4626},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:72-78","moduleId":4626,"resolvedModuleId":4626},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:91-97","moduleId":4626,"resolvedModuleId":4626},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"35:0-14","moduleId":4626,"resolvedModuleId":4626}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: exports is used directly at 4:48-55","CommonJS bailout: exports is used directly at 4:80-87","CommonJS bailout: module.exports is used directly at 35:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":507,"sizes":{"javascript":507},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneDataView.js","name":"./node_modules/lodash/_cloneDataView.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneDataView.js","index":204,"preOrderIndex":204,"index2":191,"postOrderIndex":191,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","issuerName":"./node_modules/lodash/_initCloneByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","name":"./node_modules/lodash/_initCloneByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9148}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7157,"issuerId":9148,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneDataView.js","module":"./node_modules/lodash/_cloneDataView.js","moduleName":"./node_modules/lodash/_cloneDataView.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneDataView.js","resolvedModule":"./node_modules/lodash/_cloneDataView.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":7157,"resolvedModuleId":7157},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","module":"./node_modules/lodash/_initCloneByTag.js","moduleName":"./node_modules/lodash/_initCloneByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","resolvedModule":"./node_modules/lodash/_initCloneByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cloneDataView","loc":"2:20-47","moduleId":9148,"resolvedModuleId":9148}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-54","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":439,"sizes":{"javascript":439},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneRegExp.js","name":"./node_modules/lodash/_cloneRegExp.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneRegExp.js","index":205,"preOrderIndex":205,"index2":192,"postOrderIndex":192,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","issuerName":"./node_modules/lodash/_initCloneByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","name":"./node_modules/lodash/_initCloneByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9148}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3147,"issuerId":9148,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneRegExp.js","module":"./node_modules/lodash/_cloneRegExp.js","moduleName":"./node_modules/lodash/_cloneRegExp.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneRegExp.js","resolvedModule":"./node_modules/lodash/_cloneRegExp.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"17:0-14","moduleId":3147,"resolvedModuleId":3147},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","module":"./node_modules/lodash/_initCloneByTag.js","moduleName":"./node_modules/lodash/_initCloneByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","resolvedModule":"./node_modules/lodash/_initCloneByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cloneRegExp","loc":"3:18-43","moduleId":9148,"resolvedModuleId":9148}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 17:0-14","Statement (ExpressionStatement) with side effects in source code at 17:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":524,"sizes":{"javascript":524},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneSymbol.js","name":"./node_modules/lodash/_cloneSymbol.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneSymbol.js","index":206,"preOrderIndex":206,"index2":193,"postOrderIndex":193,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","issuerName":"./node_modules/lodash/_initCloneByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","name":"./node_modules/lodash/_initCloneByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9148}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":419,"issuerId":9148,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneSymbol.js","module":"./node_modules/lodash/_cloneSymbol.js","moduleName":"./node_modules/lodash/_cloneSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneSymbol.js","resolvedModule":"./node_modules/lodash/_cloneSymbol.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":419,"resolvedModuleId":419},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","module":"./node_modules/lodash/_initCloneByTag.js","moduleName":"./node_modules/lodash/_initCloneByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","resolvedModule":"./node_modules/lodash/_initCloneByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cloneSymbol","loc":"4:18-43","moduleId":9148,"resolvedModuleId":9148}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-34","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":527,"sizes":{"javascript":527},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneTypedArray.js","name":"./node_modules/lodash/_cloneTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneTypedArray.js","index":207,"preOrderIndex":207,"index2":194,"postOrderIndex":194,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","issuerName":"./node_modules/lodash/_initCloneByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","name":"./node_modules/lodash/_initCloneByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9148}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7133,"issuerId":9148,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneTypedArray.js","module":"./node_modules/lodash/_cloneTypedArray.js","moduleName":"./node_modules/lodash/_cloneTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneTypedArray.js","resolvedModule":"./node_modules/lodash/_cloneTypedArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":7133,"resolvedModuleId":7133},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","module":"./node_modules/lodash/_initCloneByTag.js","moduleName":"./node_modules/lodash/_initCloneByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","resolvedModule":"./node_modules/lodash/_initCloneByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_cloneTypedArray","loc":"5:22-51","moduleId":9148,"resolvedModuleId":9148}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-54","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":454,"sizes":{"javascript":454},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyArray.js","name":"./node_modules/lodash/_copyArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyArray.js","index":196,"preOrderIndex":196,"index2":184,"postOrderIndex":184,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":278,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_copyArray","loc":"7:16-39","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyArray.js","module":"./node_modules/lodash/_copyArray.js","moduleName":"./node_modules/lodash/_copyArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyArray.js","resolvedModule":"./node_modules/lodash/_copyArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":278,"resolvedModuleId":278}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (ExpressionStatement) with side effects in source code at 20:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1044,"sizes":{"javascript":1044},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyObject.js","name":"./node_modules/lodash/_copyObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyObject.js","index":190,"preOrderIndex":190,"index2":177,"postOrderIndex":177,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","issuerName":"./node_modules/lodash/_baseAssign.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","name":"./node_modules/lodash/_baseAssign.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4037}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8363,"issuerId":4037,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","module":"./node_modules/lodash/_baseAssign.js","moduleName":"./node_modules/lodash/_baseAssign.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","resolvedModule":"./node_modules/lodash/_baseAssign.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_copyObject","loc":"1:17-41","moduleId":4037,"resolvedModuleId":4037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignIn.js","module":"./node_modules/lodash/_baseAssignIn.js","moduleName":"./node_modules/lodash/_baseAssignIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignIn.js","resolvedModule":"./node_modules/lodash/_baseAssignIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_copyObject","loc":"1:17-41","moduleId":3886,"resolvedModuleId":3886},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyObject.js","module":"./node_modules/lodash/_copyObject.js","moduleName":"./node_modules/lodash/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copyObject.js","resolvedModule":"./node_modules/lodash/_copyObject.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"40:0-14","moduleId":8363,"resolvedModuleId":8363},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","module":"./node_modules/lodash/_copySymbols.js","moduleName":"./node_modules/lodash/_copySymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","resolvedModule":"./node_modules/lodash/_copySymbols.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_copyObject","loc":"1:17-41","moduleId":8805,"resolvedModuleId":8805},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbolsIn.js","module":"./node_modules/lodash/_copySymbolsIn.js","moduleName":"./node_modules/lodash/_copySymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbolsIn.js","resolvedModule":"./node_modules/lodash/_copySymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_copyObject","loc":"1:17-41","moduleId":1911,"resolvedModuleId":1911}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 40:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:52","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":446,"sizes":{"javascript":446},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","name":"./node_modules/lodash/_copySymbols.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","index":197,"preOrderIndex":197,"index2":185,"postOrderIndex":185,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8805,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_copySymbols","loc":"8:18-43","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","module":"./node_modules/lodash/_copySymbols.js","moduleName":"./node_modules/lodash/_copySymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","resolvedModule":"./node_modules/lodash/_copySymbols.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":8805,"resolvedModuleId":8805}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":470,"sizes":{"javascript":470},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbolsIn.js","name":"./node_modules/lodash/_copySymbolsIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbolsIn.js","index":198,"preOrderIndex":198,"index2":187,"postOrderIndex":187,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1911,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_copySymbolsIn","loc":"9:20-47","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbolsIn.js","module":"./node_modules/lodash/_copySymbolsIn.js","moduleName":"./node_modules/lodash/_copySymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbolsIn.js","resolvedModule":"./node_modules/lodash/_copySymbolsIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":1911,"resolvedModuleId":1911}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":157,"sizes":{"javascript":157},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","name":"./node_modules/lodash/_coreJsData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","index":59,"preOrderIndex":59,"index2":41,"postOrderIndex":41,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","issuerName":"./node_modules/lodash/_isMasked.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","name":"./node_modules/lodash/_baseIsNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8458},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","name":"./node_modules/lodash/_isMasked.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5346}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4429,"issuerId":5346,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","module":"./node_modules/lodash/_coreJsData.js","moduleName":"./node_modules/lodash/_coreJsData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","resolvedModule":"./node_modules/lodash/_coreJsData.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":4429,"resolvedModuleId":4429},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","module":"./node_modules/lodash/_isMasked.js","moduleName":"./node_modules/lodash/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","resolvedModule":"./node_modules/lodash/_isMasked.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_coreJsData","loc":"1:17-41","moduleId":5346,"resolvedModuleId":5346}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":886,"sizes":{"javascript":886},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","name":"./node_modules/lodash/_createBaseEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","index":38,"preOrderIndex":38,"index2":33,"postOrderIndex":33,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","issuerName":"./node_modules/lodash/_baseEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9291,"issuerId":9881,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","module":"./node_modules/lodash/_baseEach.js","moduleName":"./node_modules/lodash/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","resolvedModule":"./node_modules/lodash/_baseEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_createBaseEach","loc":"2:21-49","moduleId":9881,"resolvedModuleId":9881},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","module":"./node_modules/lodash/_createBaseEach.js","moduleName":"./node_modules/lodash/_createBaseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","resolvedModule":"./node_modules/lodash/_createBaseEach.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":9291,"resolvedModuleId":9291}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-43","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":648,"sizes":{"javascript":648},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseFor.js","name":"./node_modules/lodash/_createBaseFor.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseFor.js","index":9,"preOrderIndex":9,"index2":2,"postOrderIndex":2,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","issuerName":"./node_modules/lodash/_baseFor.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseEach.js","name":"./node_modules/lodash/_baseEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9881},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","name":"./node_modules/lodash/_baseForOwn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7816},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","name":"./node_modules/lodash/_baseFor.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8483}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5063,"issuerId":8483,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","module":"./node_modules/lodash/_baseFor.js","moduleName":"./node_modules/lodash/_baseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFor.js","resolvedModule":"./node_modules/lodash/_baseFor.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_createBaseFor","loc":"1:20-47","moduleId":8483,"resolvedModuleId":8483},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseFor.js","module":"./node_modules/lodash/_createBaseFor.js","moduleName":"./node_modules/lodash/_createBaseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseFor.js","resolvedModule":"./node_modules/lodash/_createBaseFor.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":5063,"resolvedModuleId":5063}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (ExpressionStatement) with side effects in source code at 25:0-31","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":233,"sizes":{"javascript":233},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_defineProperty.js","name":"./node_modules/lodash/_defineProperty.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_defineProperty.js","index":88,"preOrderIndex":88,"index2":80,"postOrderIndex":80,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","issuerName":"./node_modules/lodash/_baseSetToString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","name":"./node_modules/lodash/_setToString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":61},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","name":"./node_modules/lodash/_baseSetToString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6560}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8777,"issuerId":6560,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignValue.js","module":"./node_modules/lodash/_baseAssignValue.js","moduleName":"./node_modules/lodash/_baseAssignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignValue.js","resolvedModule":"./node_modules/lodash/_baseAssignValue.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_defineProperty","loc":"1:21-49","moduleId":9465,"resolvedModuleId":9465},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","module":"./node_modules/lodash/_baseSetToString.js","moduleName":"./node_modules/lodash/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","resolvedModule":"./node_modules/lodash/_baseSetToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_defineProperty","loc":"2:21-49","moduleId":6560,"resolvedModuleId":6560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_defineProperty.js","module":"./node_modules/lodash/_defineProperty.js","moduleName":"./node_modules/lodash/_defineProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_defineProperty.js","resolvedModule":"./node_modules/lodash/_defineProperty.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"11:0-14","moduleId":8777,"resolvedModuleId":8777}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 11:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-40","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2662,"sizes":{"javascript":2662},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","index":156,"preOrderIndex":156,"index2":145,"postOrderIndex":145,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","issuerName":"./node_modules/lodash/_baseIsEqualDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114,"issuerId":2492,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_equalArrays","loc":"2:18-43","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","module":"./node_modules/lodash/_equalArrays.js","moduleName":"./node_modules/lodash/_equalArrays.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","resolvedModule":"./node_modules/lodash/_equalArrays.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"84:0-14","moduleId":7114,"resolvedModuleId":7114},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_equalArrays","loc":"4:18-43","moduleId":8351,"resolvedModuleId":8351}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 84:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3746,"sizes":{"javascript":3746},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","name":"./node_modules/lodash/_equalByTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","index":162,"preOrderIndex":162,"index2":149,"postOrderIndex":149,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","issuerName":"./node_modules/lodash/_baseIsEqualDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8351,"issuerId":2492,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_equalByTag","loc":"3:17-41","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"112:0-14","moduleId":8351,"resolvedModuleId":8351}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 112:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-6:42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2971,"sizes":{"javascript":2971},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","index":166,"preOrderIndex":166,"index2":155,"postOrderIndex":155,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","issuerName":"./node_modules/lodash/_baseIsEqualDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096,"issuerId":2492,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_equalObjects","loc":"4:19-45","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","module":"./node_modules/lodash/_equalObjects.js","moduleName":"./node_modules/lodash/_equalObjects.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","resolvedModule":"./node_modules/lodash/_equalObjects.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"90:0-14","moduleId":6096,"resolvedModuleId":6096}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 90:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":457,"sizes":{"javascript":457},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","index":92,"preOrderIndex":92,"index2":99,"postOrderIndex":99,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","issuerName":"./node_modules/lodash/pick.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021,"issuerId":8718,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","module":"./node_modules/lodash/_flatRest.js","moduleName":"./node_modules/lodash/_flatRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","resolvedModule":"./node_modules/lodash/_flatRest.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":9021,"resolvedModuleId":9021},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","module":"./node_modules/lodash/pick.js","moduleName":"./node_modules/lodash/pick.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","resolvedModule":"./node_modules/lodash/pick.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_flatRest","loc":"2:15-37","moduleId":8718,"resolvedModuleId":8718}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":173,"sizes":{"javascript":173},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_freeGlobal.js","name":"./node_modules/lodash/_freeGlobal.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_freeGlobal.js","index":18,"preOrderIndex":18,"index2":5,"postOrderIndex":5,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","issuerName":"./node_modules/lodash/_root.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","name":"./node_modules/lodash/now.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7771},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","name":"./node_modules/lodash/_root.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":5639}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1957,"issuerId":5639,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_freeGlobal.js","module":"./node_modules/lodash/_freeGlobal.js","moduleName":"./node_modules/lodash/_freeGlobal.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_freeGlobal.js","resolvedModule":"./node_modules/lodash/_freeGlobal.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:0-14","moduleId":1957,"resolvedModuleId":1957},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_freeGlobal","loc":"1:17-41","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","module":"./node_modules/lodash/_root.js","moduleName":"./node_modules/lodash/_root.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","resolvedModule":"./node_modules/lodash/_root.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_freeGlobal","loc":"1:17-41","moduleId":5639,"resolvedModuleId":5639}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 4:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-91","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":455,"sizes":{"javascript":455},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","index":167,"preOrderIndex":167,"index2":154,"postOrderIndex":154,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","issuerName":"./node_modules/lodash/_equalObjects.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234,"issuerId":6096,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getAllKeys","loc":"10:17-41","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","module":"./node_modules/lodash/_equalObjects.js","moduleName":"./node_modules/lodash/_equalObjects.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","resolvedModule":"./node_modules/lodash/_equalObjects.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getAllKeys","loc":"1:17-41","moduleId":6096,"resolvedModuleId":6096},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","module":"./node_modules/lodash/_getAllKeys.js","moduleName":"./node_modules/lodash/_getAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","resolvedModule":"./node_modules/lodash/_getAllKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":8234,"resolvedModuleId":8234}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":488,"sizes":{"javascript":488},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","name":"./node_modules/lodash/_getAllKeysIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","index":200,"preOrderIndex":200,"index2":188,"postOrderIndex":188,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6904,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getAllKeysIn","loc":"11:19-45","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","module":"./node_modules/lodash/_getAllKeysIn.js","moduleName":"./node_modules/lodash/_getAllKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","resolvedModule":"./node_modules/lodash/_getAllKeysIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"17:0-14","moduleId":6904,"resolvedModuleId":6904}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 17:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:33","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":400,"sizes":{"javascript":400},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","name":"./node_modules/lodash/_getMapData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","index":76,"preOrderIndex":76,"index2":65,"postOrderIndex":65,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","issuerName":"./node_modules/lodash/_mapCacheGet.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","name":"./node_modules/lodash/_mapCacheGet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6000}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5050,"issuerId":6000,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","module":"./node_modules/lodash/_getMapData.js","moduleName":"./node_modules/lodash/_getMapData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","resolvedModule":"./node_modules/lodash/_getMapData.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":5050,"resolvedModuleId":5050},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","module":"./node_modules/lodash/_mapCacheDelete.js","moduleName":"./node_modules/lodash/_mapCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","resolvedModule":"./node_modules/lodash/_mapCacheDelete.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMapData","loc":"1:17-41","moduleId":1285,"resolvedModuleId":1285},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","module":"./node_modules/lodash/_mapCacheGet.js","moduleName":"./node_modules/lodash/_mapCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","resolvedModule":"./node_modules/lodash/_mapCacheGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMapData","loc":"1:17-41","moduleId":6000,"resolvedModuleId":6000},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","module":"./node_modules/lodash/_mapCacheHas.js","moduleName":"./node_modules/lodash/_mapCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","resolvedModule":"./node_modules/lodash/_mapCacheHas.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMapData","loc":"1:17-41","moduleId":9916,"resolvedModuleId":9916},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","module":"./node_modules/lodash/_mapCacheSet.js","moduleName":"./node_modules/lodash/_mapCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","resolvedModule":"./node_modules/lodash/_mapCacheSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMapData","loc":"1:17-41","moduleId":5265,"resolvedModuleId":5265}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-40","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":573,"sizes":{"javascript":573},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","name":"./node_modules/lodash/_getMatchData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","index":177,"preOrderIndex":177,"index2":165,"postOrderIndex":165,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","issuerName":"./node_modules/lodash/_baseMatches.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1499,"issuerId":1573,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","module":"./node_modules/lodash/_baseMatches.js","moduleName":"./node_modules/lodash/_baseMatches.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","resolvedModule":"./node_modules/lodash/_baseMatches.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getMatchData","loc":"2:19-45","moduleId":1573,"resolvedModuleId":1573},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","module":"./node_modules/lodash/_getMatchData.js","moduleName":"./node_modules/lodash/_getMatchData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","resolvedModule":"./node_modules/lodash/_getMatchData.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"24:0-14","moduleId":1499,"resolvedModuleId":1499}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 24:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":483,"sizes":{"javascript":483},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","index":56,"preOrderIndex":56,"index2":46,"postOrderIndex":46,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","issuerName":"./node_modules/lodash/_DataView.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852,"issuerId":8552,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","module":"./node_modules/lodash/_DataView.js","moduleName":"./node_modules/lodash/_DataView.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","resolvedModule":"./node_modules/lodash/_DataView.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":8552,"resolvedModuleId":8552},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","module":"./node_modules/lodash/_Map.js","moduleName":"./node_modules/lodash/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","resolvedModule":"./node_modules/lodash/_Map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":7071,"resolvedModuleId":7071},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","module":"./node_modules/lodash/_Promise.js","moduleName":"./node_modules/lodash/_Promise.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","resolvedModule":"./node_modules/lodash/_Promise.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":3818,"resolvedModuleId":3818},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","module":"./node_modules/lodash/_Set.js","moduleName":"./node_modules/lodash/_Set.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","resolvedModule":"./node_modules/lodash/_Set.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":8525,"resolvedModuleId":8525},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","module":"./node_modules/lodash/_WeakMap.js","moduleName":"./node_modules/lodash/_WeakMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","resolvedModule":"./node_modules/lodash/_WeakMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":577,"resolvedModuleId":577},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_defineProperty.js","module":"./node_modules/lodash/_defineProperty.js","moduleName":"./node_modules/lodash/_defineProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_defineProperty.js","resolvedModule":"./node_modules/lodash/_defineProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":8777,"resolvedModuleId":8777},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","module":"./node_modules/lodash/_getNative.js","moduleName":"./node_modules/lodash/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","resolvedModule":"./node_modules/lodash/_getNative.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"17:0-14","moduleId":852,"resolvedModuleId":852},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","module":"./node_modules/lodash/_nativeCreate.js","moduleName":"./node_modules/lodash/_nativeCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","resolvedModule":"./node_modules/lodash/_nativeCreate.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getNative","loc":"1:16-39","moduleId":4536,"resolvedModuleId":4536}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 17:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":163,"sizes":{"javascript":163},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getPrototype.js","name":"./node_modules/lodash/_getPrototype.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getPrototype.js","index":143,"preOrderIndex":143,"index2":132,"postOrderIndex":132,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","issuerName":"./node_modules/lodash/isPlainObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","name":"./node_modules/reactcss/lib/flattenNames.js","profile":{"total":26,"resolving":8,"restoring":0,"building":18,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":4147},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","name":"./node_modules/lodash/isPlainObject.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8630}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":5924,"issuerId":8630,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getPrototype.js","module":"./node_modules/lodash/_getPrototype.js","moduleName":"./node_modules/lodash/_getPrototype.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getPrototype.js","resolvedModule":"./node_modules/lodash/_getPrototype.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":5924,"resolvedModuleId":5924},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","module":"./node_modules/lodash/_getSymbolsIn.js","moduleName":"./node_modules/lodash/_getSymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","resolvedModule":"./node_modules/lodash/_getSymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getPrototype","loc":"2:19-45","moduleId":1442,"resolvedModuleId":1442},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","module":"./node_modules/lodash/_initCloneObject.js","moduleName":"./node_modules/lodash/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","resolvedModule":"./node_modules/lodash/_initCloneObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getPrototype","loc":"2:19-45","moduleId":8517,"resolvedModuleId":8517},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","module":"./node_modules/lodash/isPlainObject.js","moduleName":"./node_modules/lodash/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","resolvedModule":"./node_modules/lodash/isPlainObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getPrototype","loc":"2:19-45","moduleId":8630,"resolvedModuleId":8630}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1139,"sizes":{"javascript":1139},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","name":"./node_modules/lodash/_getRawTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","index":19,"preOrderIndex":19,"index2":8,"postOrderIndex":8,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","issuerName":"./node_modules/lodash/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","name":"./node_modules/lodash/_baseGetTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4239}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9607,"issuerId":4239,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","module":"./node_modules/lodash/_baseGetTag.js","moduleName":"./node_modules/lodash/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","resolvedModule":"./node_modules/lodash/_baseGetTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getRawTag","loc":"2:16-39","moduleId":4239,"resolvedModuleId":4239},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","module":"./node_modules/lodash/_getRawTag.js","moduleName":"./node_modules/lodash/_getRawTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getRawTag.js","resolvedModule":"./node_modules/lodash/_getRawTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"46:0-14","moduleId":9607,"resolvedModuleId":9607}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 46:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-34","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":886,"sizes":{"javascript":886},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","name":"./node_modules/lodash/_getSymbols.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","index":169,"preOrderIndex":169,"index2":153,"postOrderIndex":153,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","issuerName":"./node_modules/lodash/_getAllKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9551,"issuerId":8234,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","module":"./node_modules/lodash/_copySymbols.js","moduleName":"./node_modules/lodash/_copySymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbols.js","resolvedModule":"./node_modules/lodash/_copySymbols.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getSymbols","loc":"2:17-41","moduleId":8805,"resolvedModuleId":8805},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","module":"./node_modules/lodash/_getAllKeys.js","moduleName":"./node_modules/lodash/_getAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","resolvedModule":"./node_modules/lodash/_getAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getSymbols","loc":"2:17-41","moduleId":8234,"resolvedModuleId":8234},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","module":"./node_modules/lodash/_getSymbols.js","moduleName":"./node_modules/lodash/_getSymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","resolvedModule":"./node_modules/lodash/_getSymbols.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":9551,"resolvedModuleId":9551},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","module":"./node_modules/lodash/_getSymbolsIn.js","moduleName":"./node_modules/lodash/_getSymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","resolvedModule":"./node_modules/lodash/_getSymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getSymbols","loc":"3:17-41","moduleId":1442,"resolvedModuleId":1442}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:39","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":754,"sizes":{"javascript":754},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","name":"./node_modules/lodash/_getSymbolsIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","index":199,"preOrderIndex":199,"index2":186,"postOrderIndex":186,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","issuerName":"./node_modules/lodash/_getAllKeysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","name":"./node_modules/lodash/_getAllKeysIn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6904}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1442,"issuerId":6904,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbolsIn.js","module":"./node_modules/lodash/_copySymbolsIn.js","moduleName":"./node_modules/lodash/_copySymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_copySymbolsIn.js","resolvedModule":"./node_modules/lodash/_copySymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getSymbolsIn","loc":"2:19-45","moduleId":1911,"resolvedModuleId":1911},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","module":"./node_modules/lodash/_getAllKeysIn.js","moduleName":"./node_modules/lodash/_getAllKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","resolvedModule":"./node_modules/lodash/_getAllKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getSymbolsIn","loc":"2:19-45","moduleId":6904,"resolvedModuleId":6904},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","module":"./node_modules/lodash/_getSymbolsIn.js","moduleName":"./node_modules/lodash/_getSymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","resolvedModule":"./node_modules/lodash/_getSymbolsIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":1442,"resolvedModuleId":1442}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:39","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1838,"sizes":{"javascript":1838},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","index":172,"preOrderIndex":172,"index2":160,"postOrderIndex":160,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"12:13-33","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"5:13-33","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","module":"./node_modules/lodash/_baseIsMap.js","moduleName":"./node_modules/lodash/_baseIsMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","resolvedModule":"./node_modules/lodash/_baseIsMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"1:13-33","moduleId":5588,"resolvedModuleId":5588},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","module":"./node_modules/lodash/_baseIsSet.js","moduleName":"./node_modules/lodash/_baseIsSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","resolvedModule":"./node_modules/lodash/_baseIsSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"1:13-33","moduleId":9221,"resolvedModuleId":9221},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"58:0-14","moduleId":4160,"resolvedModuleId":4160},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getTag","loc":"2:13-33","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 58:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-7:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":325,"sizes":{"javascript":325},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getValue.js","name":"./node_modules/lodash/_getValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getValue.js","index":61,"preOrderIndex":61,"index2":45,"postOrderIndex":45,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","issuerName":"./node_modules/lodash/_getNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7801,"issuerId":852,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","module":"./node_modules/lodash/_getNative.js","moduleName":"./node_modules/lodash/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","resolvedModule":"./node_modules/lodash/_getNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_getValue","loc":"2:15-37","moduleId":852,"resolvedModuleId":852},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getValue.js","module":"./node_modules/lodash/_getValue.js","moduleName":"./node_modules/lodash/_getValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getValue.js","resolvedModule":"./node_modules/lodash/_getValue.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"13:0-14","moduleId":7801,"resolvedModuleId":7801}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 13:0-14","Statement (ExpressionStatement) with side effects in source code at 13:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1085,"sizes":{"javascript":1085},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","index":91,"preOrderIndex":91,"index2":86,"postOrderIndex":86,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","issuerName":"./node_modules/lodash/has.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222,"issuerId":8721,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"39:0-14","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","module":"./node_modules/lodash/has.js","moduleName":"./node_modules/lodash/has.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","resolvedModule":"./node_modules/lodash/has.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hasPath","loc":"2:14-35","moduleId":8721,"resolvedModuleId":8721},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","module":"./node_modules/lodash/hasIn.js","moduleName":"./node_modules/lodash/hasIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","resolvedModule":"./node_modules/lodash/hasIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hasPath","loc":"2:14-35","moduleId":9095,"resolvedModuleId":9095}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 39:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-6:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":281,"sizes":{"javascript":281},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","name":"./node_modules/lodash/_hashClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","index":54,"preOrderIndex":54,"index2":48,"postOrderIndex":48,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1789,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashClear","loc":"1:16-39","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","module":"./node_modules/lodash/_hashClear.js","moduleName":"./node_modules/lodash/_hashClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","resolvedModule":"./node_modules/lodash/_hashClear.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":1789,"resolvedModuleId":1789}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":445,"sizes":{"javascript":445},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashDelete.js","name":"./node_modules/lodash/_hashDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashDelete.js","index":62,"preOrderIndex":62,"index2":49,"postOrderIndex":49,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":401,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashDelete","loc":"2:17-41","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashDelete.js","module":"./node_modules/lodash/_hashDelete.js","moduleName":"./node_modules/lodash/_hashDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashDelete.js","resolvedModule":"./node_modules/lodash/_hashDelete.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"17:0-14","moduleId":401,"resolvedModuleId":401}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 17:0-14","Statement (ExpressionStatement) with side effects in source code at 17:0-28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":772,"sizes":{"javascript":772},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","name":"./node_modules/lodash/_hashGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","index":63,"preOrderIndex":63,"index2":50,"postOrderIndex":50,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7667,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashGet","loc":"3:14-35","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","module":"./node_modules/lodash/_hashGet.js","moduleName":"./node_modules/lodash/_hashGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","resolvedModule":"./node_modules/lodash/_hashGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":7667,"resolvedModuleId":7667}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":626,"sizes":{"javascript":626},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","name":"./node_modules/lodash/_hashHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","index":64,"preOrderIndex":64,"index2":51,"postOrderIndex":51,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1327,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashHas","loc":"4:14-35","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","module":"./node_modules/lodash/_hashHas.js","moduleName":"./node_modules/lodash/_hashHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","resolvedModule":"./node_modules/lodash/_hashHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":1327,"resolvedModuleId":1327}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":598,"sizes":{"javascript":598},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","name":"./node_modules/lodash/_hashSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","index":65,"preOrderIndex":65,"index2":52,"postOrderIndex":52,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","issuerName":"./node_modules/lodash/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1866,"issuerId":1989,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","module":"./node_modules/lodash/_Hash.js","moduleName":"./node_modules/lodash/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","resolvedModule":"./node_modules/lodash/_Hash.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_hashSet","loc":"5:14-35","moduleId":1989,"resolvedModuleId":1989},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","module":"./node_modules/lodash/_hashSet.js","moduleName":"./node_modules/lodash/_hashSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","resolvedModule":"./node_modules/lodash/_hashSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":1866,"resolvedModuleId":1866}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":692,"sizes":{"javascript":692},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneArray.js","name":"./node_modules/lodash/_initCloneArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneArray.js","index":201,"preOrderIndex":201,"index2":189,"postOrderIndex":189,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3824,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_initCloneArray","loc":"13:21-49","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneArray.js","module":"./node_modules/lodash/_initCloneArray.js","moduleName":"./node_modules/lodash/_initCloneArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneArray.js","resolvedModule":"./node_modules/lodash/_initCloneArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":3824,"resolvedModuleId":3824}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2261,"sizes":{"javascript":2261},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","name":"./node_modules/lodash/_initCloneByTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","index":202,"preOrderIndex":202,"index2":195,"postOrderIndex":195,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9148,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_initCloneByTag","loc":"14:21-49","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","module":"./node_modules/lodash/_initCloneByTag.js","moduleName":"./node_modules/lodash/_initCloneByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneByTag.js","resolvedModule":"./node_modules/lodash/_initCloneByTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"77:0-14","moduleId":9148,"resolvedModuleId":9148}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 77:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-5:52","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":486,"sizes":{"javascript":486},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","name":"./node_modules/lodash/_initCloneObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","index":208,"preOrderIndex":208,"index2":197,"postOrderIndex":197,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8517,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_initCloneObject","loc":"15:22-51","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","module":"./node_modules/lodash/_initCloneObject.js","moduleName":"./node_modules/lodash/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","resolvedModule":"./node_modules/lodash/_initCloneObject.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":8517,"resolvedModuleId":8517}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":608,"sizes":{"javascript":608},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","name":"./node_modules/lodash/_isFlattenable.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","index":96,"preOrderIndex":96,"index2":90,"postOrderIndex":90,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","issuerName":"./node_modules/lodash/_baseFlatten.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","name":"./node_modules/lodash/flatten.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5564},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","name":"./node_modules/lodash/_baseFlatten.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1078}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7285,"issuerId":1078,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","module":"./node_modules/lodash/_baseFlatten.js","moduleName":"./node_modules/lodash/_baseFlatten.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseFlatten.js","resolvedModule":"./node_modules/lodash/_baseFlatten.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isFlattenable","loc":"2:20-47","moduleId":1078,"resolvedModuleId":1078},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","module":"./node_modules/lodash/_isFlattenable.js","moduleName":"./node_modules/lodash/_isFlattenable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","resolvedModule":"./node_modules/lodash/_isFlattenable.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":7285,"resolvedModuleId":7285}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":759,"sizes":{"javascript":759},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isIndex.js","name":"./node_modules/lodash/_isIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isIndex.js","index":25,"preOrderIndex":25,"index2":17,"postOrderIndex":17,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","issuerName":"./node_modules/lodash/_hasPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":5776,"issuerId":222,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isIndex","loc":"5:14-35","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isIndex","loc":"3:14-35","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isIndex","loc":"4:14-35","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isIndex.js","module":"./node_modules/lodash/_isIndex.js","moduleName":"./node_modules/lodash/_isIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isIndex.js","resolvedModule":"./node_modules/lodash/_isIndex.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":5776,"resolvedModuleId":5776}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (ExpressionStatement) with side effects in source code at 25:0-25","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":880,"sizes":{"javascript":880},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","name":"./node_modules/lodash/_isKey.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","index":46,"preOrderIndex":46,"index2":40,"postOrderIndex":40,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","issuerName":"./node_modules/lodash/_castPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":5403,"issuerId":1811,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isKey","loc":"4:12-31","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isKey","loc":"2:12-31","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","module":"./node_modules/lodash/_isKey.js","moduleName":"./node_modules/lodash/_isKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","resolvedModule":"./node_modules/lodash/_isKey.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"29:0-14","moduleId":5403,"resolvedModuleId":5403},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isKey","loc":"3:12-31","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 29:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":430,"sizes":{"javascript":430},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKeyable.js","name":"./node_modules/lodash/_isKeyable.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKeyable.js","index":77,"preOrderIndex":77,"index2":64,"postOrderIndex":64,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","issuerName":"./node_modules/lodash/_getMapData.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","name":"./node_modules/lodash/_mapCacheGet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6000},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","name":"./node_modules/lodash/_getMapData.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5050}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7019,"issuerId":5050,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","module":"./node_modules/lodash/_getMapData.js","moduleName":"./node_modules/lodash/_getMapData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMapData.js","resolvedModule":"./node_modules/lodash/_getMapData.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isKeyable","loc":"1:16-39","moduleId":5050,"resolvedModuleId":5050},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKeyable.js","module":"./node_modules/lodash/_isKeyable.js","moduleName":"./node_modules/lodash/_isKeyable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKeyable.js","resolvedModule":"./node_modules/lodash/_isKeyable.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":7019,"resolvedModuleId":7019}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (ExpressionStatement) with side effects in source code at 15:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":564,"sizes":{"javascript":564},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","name":"./node_modules/lodash/_isMasked.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","index":58,"preOrderIndex":58,"index2":42,"postOrderIndex":42,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","issuerName":"./node_modules/lodash/_baseIsNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","name":"./node_modules/lodash/_DataView.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8552},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getNative.js","name":"./node_modules/lodash/_getNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":852},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","name":"./node_modules/lodash/_baseIsNative.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8458}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5346,"issuerId":8458,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isMasked","loc":"2:15-37","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","module":"./node_modules/lodash/_isMasked.js","moduleName":"./node_modules/lodash/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isMasked.js","resolvedModule":"./node_modules/lodash/_isMasked.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":5346,"resolvedModuleId":5346}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":480,"sizes":{"javascript":480},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isPrototype.js","name":"./node_modules/lodash/_isPrototype.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isPrototype.js","index":32,"preOrderIndex":32,"index2":24,"postOrderIndex":24,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":5726,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","module":"./node_modules/lodash/_baseKeys.js","moduleName":"./node_modules/lodash/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","resolvedModule":"./node_modules/lodash/_baseKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isPrototype","loc":"1:18-43","moduleId":280,"resolvedModuleId":280},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","module":"./node_modules/lodash/_baseKeysIn.js","moduleName":"./node_modules/lodash/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","resolvedModule":"./node_modules/lodash/_baseKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isPrototype","loc":"2:18-43","moduleId":313,"resolvedModuleId":313},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","module":"./node_modules/lodash/_initCloneObject.js","moduleName":"./node_modules/lodash/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_initCloneObject.js","resolvedModule":"./node_modules/lodash/_initCloneObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isPrototype","loc":"3:18-43","moduleId":8517,"resolvedModuleId":8517},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isPrototype.js","module":"./node_modules/lodash/_isPrototype.js","moduleName":"./node_modules/lodash/_isPrototype.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isPrototype.js","resolvedModule":"./node_modules/lodash/_isPrototype.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":5726,"resolvedModuleId":5726},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isPrototype","loc":"7:18-43","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":414,"sizes":{"javascript":414},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","name":"./node_modules/lodash/_isStrictComparable.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","index":178,"preOrderIndex":178,"index2":164,"postOrderIndex":164,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","issuerName":"./node_modules/lodash/_baseMatchesProperty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":5,"additionalIntegration":0,"factory":0,"dependencies":5},"id":9162,"issuerId":6432,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isStrictComparable","loc":"5:25-57","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","module":"./node_modules/lodash/_getMatchData.js","moduleName":"./node_modules/lodash/_getMatchData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","resolvedModule":"./node_modules/lodash/_getMatchData.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_isStrictComparable","loc":"1:25-57","moduleId":1499,"resolvedModuleId":1499},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","module":"./node_modules/lodash/_isStrictComparable.js","moduleName":"./node_modules/lodash/_isStrictComparable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","resolvedModule":"./node_modules/lodash/_isStrictComparable.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":9162,"resolvedModuleId":9162}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":218,"sizes":{"javascript":218},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheClear.js","name":"./node_modules/lodash/_listCacheClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheClear.js","index":67,"preOrderIndex":67,"index2":54,"postOrderIndex":54,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7040,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheClear","loc":"1:21-49","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheClear.js","module":"./node_modules/lodash/_listCacheClear.js","moduleName":"./node_modules/lodash/_listCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheClear.js","resolvedModule":"./node_modules/lodash/_listCacheClear.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"13:0-14","moduleId":7040,"resolvedModuleId":7040}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 13:0-14","Statement (ExpressionStatement) with side effects in source code at 13:0-32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":775,"sizes":{"javascript":775},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","name":"./node_modules/lodash/_listCacheDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","index":68,"preOrderIndex":68,"index2":57,"postOrderIndex":57,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4125,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheDelete","loc":"2:22-51","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","module":"./node_modules/lodash/_listCacheDelete.js","moduleName":"./node_modules/lodash/_listCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheDelete.js","resolvedModule":"./node_modules/lodash/_listCacheDelete.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"35:0-14","moduleId":4125,"resolvedModuleId":4125}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 35:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":420,"sizes":{"javascript":420},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","name":"./node_modules/lodash/_listCacheGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","index":71,"preOrderIndex":71,"index2":58,"postOrderIndex":58,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2117,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheGet","loc":"3:19-45","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","module":"./node_modules/lodash/_listCacheGet.js","moduleName":"./node_modules/lodash/_listCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheGet.js","resolvedModule":"./node_modules/lodash/_listCacheGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":2117,"resolvedModuleId":2117}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":403,"sizes":{"javascript":403},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","name":"./node_modules/lodash/_listCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","index":72,"preOrderIndex":72,"index2":59,"postOrderIndex":59,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7529,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheHas","loc":"4:19-45","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","module":"./node_modules/lodash/_listCacheHas.js","moduleName":"./node_modules/lodash/_listCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheHas.js","resolvedModule":"./node_modules/lodash/_listCacheHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":7529,"resolvedModuleId":7529}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":553,"sizes":{"javascript":553},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","name":"./node_modules/lodash/_listCacheSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","index":73,"preOrderIndex":73,"index2":60,"postOrderIndex":60,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","issuerName":"./node_modules/lodash/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","name":"./node_modules/lodash/_ListCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8407}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4705,"issuerId":8407,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","module":"./node_modules/lodash/_ListCache.js","moduleName":"./node_modules/lodash/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_ListCache.js","resolvedModule":"./node_modules/lodash/_ListCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_listCacheSet","loc":"5:19-45","moduleId":8407,"resolvedModuleId":8407},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","module":"./node_modules/lodash/_listCacheSet.js","moduleName":"./node_modules/lodash/_listCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_listCacheSet.js","resolvedModule":"./node_modules/lodash/_listCacheSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":4705,"resolvedModuleId":4705}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":393,"sizes":{"javascript":393},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","index":52,"preOrderIndex":52,"index2":63,"postOrderIndex":63,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheClear","loc":"1:20-47","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","module":"./node_modules/lodash/_mapCacheClear.js","moduleName":"./node_modules/lodash/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","resolvedModule":"./node_modules/lodash/_mapCacheClear.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":4785,"resolvedModuleId":4785}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":450,"sizes":{"javascript":450},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","name":"./node_modules/lodash/_mapCacheDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","index":75,"preOrderIndex":75,"index2":66,"postOrderIndex":66,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1285,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheDelete","loc":"2:21-49","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","module":"./node_modules/lodash/_mapCacheDelete.js","moduleName":"./node_modules/lodash/_mapCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheDelete.js","resolvedModule":"./node_modules/lodash/_mapCacheDelete.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":1285,"resolvedModuleId":1285}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":330,"sizes":{"javascript":330},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","name":"./node_modules/lodash/_mapCacheGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","index":78,"preOrderIndex":78,"index2":67,"postOrderIndex":67,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6000,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheGet","loc":"3:18-43","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","module":"./node_modules/lodash/_mapCacheGet.js","moduleName":"./node_modules/lodash/_mapCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheGet.js","resolvedModule":"./node_modules/lodash/_mapCacheGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":6000,"resolvedModuleId":6000}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":382,"sizes":{"javascript":382},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","name":"./node_modules/lodash/_mapCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","index":79,"preOrderIndex":79,"index2":68,"postOrderIndex":68,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9916,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheHas","loc":"4:18-43","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","module":"./node_modules/lodash/_mapCacheHas.js","moduleName":"./node_modules/lodash/_mapCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheHas.js","resolvedModule":"./node_modules/lodash/_mapCacheHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":9916,"resolvedModuleId":9916}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":489,"sizes":{"javascript":489},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","name":"./node_modules/lodash/_mapCacheSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","index":80,"preOrderIndex":80,"index2":69,"postOrderIndex":69,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","issuerName":"./node_modules/lodash/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5265,"issuerId":3369,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","module":"./node_modules/lodash/_MapCache.js","moduleName":"./node_modules/lodash/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","resolvedModule":"./node_modules/lodash/_MapCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapCacheSet","loc":"5:18-43","moduleId":3369,"resolvedModuleId":3369},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","module":"./node_modules/lodash/_mapCacheSet.js","moduleName":"./node_modules/lodash/_mapCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheSet.js","resolvedModule":"./node_modules/lodash/_mapCacheSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":5265,"resolvedModuleId":5265}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":363,"sizes":{"javascript":363},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapToArray.js","name":"./node_modules/lodash/_mapToArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapToArray.js","index":164,"preOrderIndex":164,"index2":147,"postOrderIndex":147,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","issuerName":"./node_modules/lodash/_equalByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","name":"./node_modules/lodash/_equalByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8351}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8776,"issuerId":8351,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_mapToArray","loc":"5:17-41","moduleId":8351,"resolvedModuleId":8351},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapToArray.js","module":"./node_modules/lodash/_mapToArray.js","moduleName":"./node_modules/lodash/_mapToArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapToArray.js","resolvedModule":"./node_modules/lodash/_mapToArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":8776,"resolvedModuleId":8776}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (ExpressionStatement) with side effects in source code at 18:0-28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":574,"sizes":{"javascript":574},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_matchesStrictComparable.js","name":"./node_modules/lodash/_matchesStrictComparable.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_matchesStrictComparable.js","index":179,"preOrderIndex":179,"index2":166,"postOrderIndex":166,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","issuerName":"./node_modules/lodash/_baseMatches.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2634,"issuerId":1573,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","module":"./node_modules/lodash/_baseMatches.js","moduleName":"./node_modules/lodash/_baseMatches.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","resolvedModule":"./node_modules/lodash/_baseMatches.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_matchesStrictComparable","loc":"3:30-67","moduleId":1573,"resolvedModuleId":1573},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_matchesStrictComparable","loc":"6:30-67","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_matchesStrictComparable.js","module":"./node_modules/lodash/_matchesStrictComparable.js","moduleName":"./node_modules/lodash/_matchesStrictComparable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_matchesStrictComparable.js","resolvedModule":"./node_modules/lodash/_matchesStrictComparable.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":2634,"resolvedModuleId":2634}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (ExpressionStatement) with side effects in source code at 20:0-41","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":633,"sizes":{"javascript":633},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","index":49,"preOrderIndex":49,"index2":72,"postOrderIndex":72,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","issuerName":"./node_modules/lodash/_stringToPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523,"issuerId":5514,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","module":"./node_modules/lodash/_memoizeCapped.js","moduleName":"./node_modules/lodash/_memoizeCapped.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","resolvedModule":"./node_modules/lodash/_memoizeCapped.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":4523,"resolvedModuleId":4523},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","module":"./node_modules/lodash/_stringToPath.js","moduleName":"./node_modules/lodash/_stringToPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","resolvedModule":"./node_modules/lodash/_stringToPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_memoizeCapped","loc":"1:20-47","moduleId":5514,"resolvedModuleId":5514}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":187,"sizes":{"javascript":187},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","name":"./node_modules/lodash/_nativeCreate.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","index":55,"preOrderIndex":55,"index2":47,"postOrderIndex":47,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","issuerName":"./node_modules/lodash/_hashHas.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_MapCache.js","name":"./node_modules/lodash/_MapCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":3369},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_mapCacheClear.js","name":"./node_modules/lodash/_mapCacheClear.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4785},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Hash.js","name":"./node_modules/lodash/_Hash.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1989},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","name":"./node_modules/lodash/_hashHas.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1327}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4536,"issuerId":1327,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","module":"./node_modules/lodash/_hashClear.js","moduleName":"./node_modules/lodash/_hashClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashClear.js","resolvedModule":"./node_modules/lodash/_hashClear.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeCreate","loc":"1:19-45","moduleId":1789,"resolvedModuleId":1789},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","module":"./node_modules/lodash/_hashGet.js","moduleName":"./node_modules/lodash/_hashGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashGet.js","resolvedModule":"./node_modules/lodash/_hashGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeCreate","loc":"1:19-45","moduleId":7667,"resolvedModuleId":7667},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","module":"./node_modules/lodash/_hashHas.js","moduleName":"./node_modules/lodash/_hashHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashHas.js","resolvedModule":"./node_modules/lodash/_hashHas.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeCreate","loc":"1:19-45","moduleId":1327,"resolvedModuleId":1327},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","module":"./node_modules/lodash/_hashSet.js","moduleName":"./node_modules/lodash/_hashSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hashSet.js","resolvedModule":"./node_modules/lodash/_hashSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeCreate","loc":"1:19-45","moduleId":1866,"resolvedModuleId":1866},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","module":"./node_modules/lodash/_nativeCreate.js","moduleName":"./node_modules/lodash/_nativeCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeCreate.js","resolvedModule":"./node_modules/lodash/_nativeCreate.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":4536,"resolvedModuleId":4536}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-40","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":12},{"type":"module","moduleType":"javascript/auto","layer":null,"size":204,"sizes":{"javascript":204},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","name":"./node_modules/lodash/_nativeKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","index":33,"preOrderIndex":33,"index2":26,"postOrderIndex":26,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","issuerName":"./node_modules/lodash/_baseKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","name":"./node_modules/lodash/_baseKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":280}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6916,"issuerId":280,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","module":"./node_modules/lodash/_baseKeys.js","moduleName":"./node_modules/lodash/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","resolvedModule":"./node_modules/lodash/_baseKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeKeys","loc":"2:17-41","moduleId":280,"resolvedModuleId":280},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","module":"./node_modules/lodash/_nativeKeys.js","moduleName":"./node_modules/lodash/_nativeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","resolvedModule":"./node_modules/lodash/_nativeKeys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"6:0-14","moduleId":6916,"resolvedModuleId":6916}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 6:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":490,"sizes":{"javascript":490},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeysIn.js","name":"./node_modules/lodash/_nativeKeysIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeysIn.js","index":194,"preOrderIndex":194,"index2":179,"postOrderIndex":179,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","issuerName":"./node_modules/lodash/_baseKeysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","name":"./node_modules/lodash/keysIn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1704},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","name":"./node_modules/lodash/_baseKeysIn.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":313}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3498,"issuerId":313,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","module":"./node_modules/lodash/_baseKeysIn.js","moduleName":"./node_modules/lodash/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","resolvedModule":"./node_modules/lodash/_baseKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nativeKeysIn","loc":"3:19-45","moduleId":313,"resolvedModuleId":313},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeysIn.js","module":"./node_modules/lodash/_nativeKeysIn.js","moduleName":"./node_modules/lodash/_nativeKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeysIn.js","resolvedModule":"./node_modules/lodash/_nativeKeysIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"20:0-14","moduleId":3498,"resolvedModuleId":3498}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 20:0-14","Statement (ExpressionStatement) with side effects in source code at 20:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":12},{"type":"module","moduleType":"javascript/auto","layer":null,"size":995,"sizes":{"javascript":995},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","name":"./node_modules/lodash/_nodeUtil.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","index":30,"preOrderIndex":30,"index2":21,"postOrderIndex":21,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","issuerName":"./node_modules/lodash/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","name":"./node_modules/lodash/isTypedArray.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6719}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":1167,"issuerId":6719,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:48-55","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:60-76","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"4:80-87","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:61-67","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:72-78","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"7:91-97","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","module":"./node_modules/lodash/_nodeUtil.js","moduleName":"./node_modules/lodash/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nodeUtil.js","resolvedModule":"./node_modules/lodash/_nodeUtil.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":1167,"resolvedModuleId":1167},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","module":"./node_modules/lodash/isMap.js","moduleName":"./node_modules/lodash/isMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","resolvedModule":"./node_modules/lodash/isMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nodeUtil","loc":"3:15-37","moduleId":6688,"resolvedModuleId":6688},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","module":"./node_modules/lodash/isSet.js","moduleName":"./node_modules/lodash/isSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","resolvedModule":"./node_modules/lodash/isSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nodeUtil","loc":"3:15-37","moduleId":2928,"resolvedModuleId":2928},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","module":"./node_modules/lodash/isTypedArray.js","moduleName":"./node_modules/lodash/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","resolvedModule":"./node_modules/lodash/isTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_nodeUtil","loc":"3:15-37","moduleId":6719,"resolvedModuleId":6719}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: exports is used directly at 4:48-55","CommonJS bailout: exports is used directly at 4:80-87","CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":565,"sizes":{"javascript":565},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_objectToString.js","name":"./node_modules/lodash/_objectToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_objectToString.js","index":20,"preOrderIndex":20,"index2":9,"postOrderIndex":9,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","issuerName":"./node_modules/lodash/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","name":"./node_modules/lodash/_baseGetTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4239}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2333,"issuerId":4239,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","module":"./node_modules/lodash/_baseGetTag.js","moduleName":"./node_modules/lodash/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetTag.js","resolvedModule":"./node_modules/lodash/_baseGetTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_objectToString","loc":"3:21-49","moduleId":4239,"resolvedModuleId":4239},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_objectToString.js","module":"./node_modules/lodash/_objectToString.js","moduleName":"./node_modules/lodash/_objectToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_objectToString.js","resolvedModule":"./node_modules/lodash/_objectToString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":2333,"resolvedModuleId":2333}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":382,"sizes":{"javascript":382},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overArg.js","name":"./node_modules/lodash/_overArg.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overArg.js","index":34,"preOrderIndex":34,"index2":25,"postOrderIndex":25,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","issuerName":"./node_modules/lodash/_nativeKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeys.js","name":"./node_modules/lodash/_baseKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":280},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","name":"./node_modules/lodash/_nativeKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6916}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":5569,"issuerId":6916,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getPrototype.js","module":"./node_modules/lodash/_getPrototype.js","moduleName":"./node_modules/lodash/_getPrototype.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getPrototype.js","resolvedModule":"./node_modules/lodash/_getPrototype.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_overArg","loc":"1:14-35","moduleId":5924,"resolvedModuleId":5924},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","module":"./node_modules/lodash/_nativeKeys.js","moduleName":"./node_modules/lodash/_nativeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_nativeKeys.js","resolvedModule":"./node_modules/lodash/_nativeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_overArg","loc":"1:14-35","moduleId":6916,"resolvedModuleId":6916},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overArg.js","module":"./node_modules/lodash/_overArg.js","moduleName":"./node_modules/lodash/_overArg.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overArg.js","resolvedModule":"./node_modules/lodash/_overArg.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":5569,"resolvedModuleId":5569}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (ExpressionStatement) with side effects in source code at 15:0-25","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1096,"sizes":{"javascript":1096},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overRest.js","name":"./node_modules/lodash/_overRest.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overRest.js","index":97,"preOrderIndex":97,"index2":94,"postOrderIndex":94,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","issuerName":"./node_modules/lodash/_flatRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5357,"issuerId":9021,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","module":"./node_modules/lodash/_flatRest.js","moduleName":"./node_modules/lodash/_flatRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","resolvedModule":"./node_modules/lodash/_flatRest.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_overRest","loc":"2:15-37","moduleId":9021,"resolvedModuleId":9021},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overRest.js","module":"./node_modules/lodash/_overRest.js","moduleName":"./node_modules/lodash/_overRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_overRest.js","resolvedModule":"./node_modules/lodash/_overRest.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"36:0-14","moduleId":5357,"resolvedModuleId":5357}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 36:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":300,"sizes":{"javascript":300},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","name":"./node_modules/lodash/_root.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","index":17,"preOrderIndex":17,"index2":6,"postOrderIndex":6,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","issuerName":"./node_modules/lodash/now.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","name":"./node_modules/lodash/now.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7771}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":5639,"issuerId":7771,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","module":"./node_modules/lodash/_DataView.js","moduleName":"./node_modules/lodash/_DataView.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_DataView.js","resolvedModule":"./node_modules/lodash/_DataView.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":8552,"resolvedModuleId":8552},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","module":"./node_modules/lodash/_Map.js","moduleName":"./node_modules/lodash/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Map.js","resolvedModule":"./node_modules/lodash/_Map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":7071,"resolvedModuleId":7071},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","module":"./node_modules/lodash/_Promise.js","moduleName":"./node_modules/lodash/_Promise.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Promise.js","resolvedModule":"./node_modules/lodash/_Promise.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":3818,"resolvedModuleId":3818},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","module":"./node_modules/lodash/_Set.js","moduleName":"./node_modules/lodash/_Set.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Set.js","resolvedModule":"./node_modules/lodash/_Set.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":8525,"resolvedModuleId":8525},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","module":"./node_modules/lodash/_Symbol.js","moduleName":"./node_modules/lodash/_Symbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Symbol.js","resolvedModule":"./node_modules/lodash/_Symbol.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":2705,"resolvedModuleId":2705},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","module":"./node_modules/lodash/_Uint8Array.js","moduleName":"./node_modules/lodash/_Uint8Array.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Uint8Array.js","resolvedModule":"./node_modules/lodash/_Uint8Array.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":1149,"resolvedModuleId":1149},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","module":"./node_modules/lodash/_WeakMap.js","moduleName":"./node_modules/lodash/_WeakMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_WeakMap.js","resolvedModule":"./node_modules/lodash/_WeakMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"2:11-29","moduleId":577,"resolvedModuleId":577},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","module":"./node_modules/lodash/_cloneBuffer.js","moduleName":"./node_modules/lodash/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_cloneBuffer.js","resolvedModule":"./node_modules/lodash/_cloneBuffer.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":4626,"resolvedModuleId":4626},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","module":"./node_modules/lodash/_coreJsData.js","moduleName":"./node_modules/lodash/_coreJsData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_coreJsData.js","resolvedModule":"./node_modules/lodash/_coreJsData.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":4429,"resolvedModuleId":4429},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","module":"./node_modules/lodash/_root.js","moduleName":"./node_modules/lodash/_root.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_root.js","resolvedModule":"./node_modules/lodash/_root.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"9:0-14","moduleId":5639,"resolvedModuleId":5639},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","module":"./node_modules/lodash/now.js","moduleName":"./node_modules/lodash/now.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","resolvedModule":"./node_modules/lodash/now.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_root","loc":"1:11-29","moduleId":7771,"resolvedModuleId":7771}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 9:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-42","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":424,"sizes":{"javascript":424},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheAdd.js","name":"./node_modules/lodash/_setCacheAdd.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheAdd.js","index":158,"preOrderIndex":158,"index2":140,"postOrderIndex":140,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","issuerName":"./node_modules/lodash/_SetCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","name":"./node_modules/lodash/_SetCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8668}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":619,"issuerId":8668,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","module":"./node_modules/lodash/_SetCache.js","moduleName":"./node_modules/lodash/_SetCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","resolvedModule":"./node_modules/lodash/_SetCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_setCacheAdd","loc":"2:18-43","moduleId":8668,"resolvedModuleId":8668},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheAdd.js","module":"./node_modules/lodash/_setCacheAdd.js","moduleName":"./node_modules/lodash/_setCacheAdd.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheAdd.js","resolvedModule":"./node_modules/lodash/_setCacheAdd.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":619,"resolvedModuleId":619}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (ExpressionStatement) with side effects in source code at 19:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":316,"sizes":{"javascript":316},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheHas.js","name":"./node_modules/lodash/_setCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheHas.js","index":159,"preOrderIndex":159,"index2":141,"postOrderIndex":141,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","issuerName":"./node_modules/lodash/_SetCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalArrays.js","name":"./node_modules/lodash/_equalArrays.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7114},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","name":"./node_modules/lodash/_SetCache.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8668}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2385,"issuerId":8668,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","module":"./node_modules/lodash/_SetCache.js","moduleName":"./node_modules/lodash/_SetCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_SetCache.js","resolvedModule":"./node_modules/lodash/_SetCache.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_setCacheHas","loc":"3:18-43","moduleId":8668,"resolvedModuleId":8668},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheHas.js","module":"./node_modules/lodash/_setCacheHas.js","moduleName":"./node_modules/lodash/_setCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setCacheHas.js","resolvedModule":"./node_modules/lodash/_setCacheHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":2385,"resolvedModuleId":2385}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":345,"sizes":{"javascript":345},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToArray.js","name":"./node_modules/lodash/_setToArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToArray.js","index":165,"preOrderIndex":165,"index2":148,"postOrderIndex":148,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","issuerName":"./node_modules/lodash/_equalByTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","name":"./node_modules/lodash/_equalByTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8351}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1814,"issuerId":8351,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_setToArray","loc":"6:17-41","moduleId":8351,"resolvedModuleId":8351},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToArray.js","module":"./node_modules/lodash/_setToArray.js","moduleName":"./node_modules/lodash/_setToArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToArray.js","resolvedModule":"./node_modules/lodash/_setToArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":1814,"resolvedModuleId":1814}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (ExpressionStatement) with side effects in source code at 18:0-28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":9},{"type":"module","moduleType":"javascript/auto","layer":null,"size":392,"sizes":{"javascript":392},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","name":"./node_modules/lodash/_setToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","index":99,"preOrderIndex":99,"index2":98,"postOrderIndex":98,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","issuerName":"./node_modules/lodash/_flatRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":61,"issuerId":9021,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","module":"./node_modules/lodash/_flatRest.js","moduleName":"./node_modules/lodash/_flatRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","resolvedModule":"./node_modules/lodash/_flatRest.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_setToString","loc":"3:18-43","moduleId":9021,"resolvedModuleId":9021},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","module":"./node_modules/lodash/_setToString.js","moduleName":"./node_modules/lodash/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","resolvedModule":"./node_modules/lodash/_setToString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":61,"resolvedModuleId":61}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":941,"sizes":{"javascript":941},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_shortOut.js","name":"./node_modules/lodash/_shortOut.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_shortOut.js","index":102,"preOrderIndex":102,"index2":97,"postOrderIndex":97,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","issuerName":"./node_modules/lodash/_setToString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","name":"./node_modules/lodash/_setToString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":61}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1275,"issuerId":61,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","module":"./node_modules/lodash/_setToString.js","moduleName":"./node_modules/lodash/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","resolvedModule":"./node_modules/lodash/_setToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_shortOut","loc":"2:15-37","moduleId":61,"resolvedModuleId":61},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_shortOut.js","module":"./node_modules/lodash/_shortOut.js","moduleName":"./node_modules/lodash/_shortOut.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_shortOut.js","resolvedModule":"./node_modules/lodash/_shortOut.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":1275,"resolvedModuleId":1275}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (VariableDeclaration) with side effects in source code at 6:0-25","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":254,"sizes":{"javascript":254},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","name":"./node_modules/lodash/_stackClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","index":149,"preOrderIndex":149,"index2":134,"postOrderIndex":134,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7465,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackClear","loc":"2:17-41","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","module":"./node_modules/lodash/_stackClear.js","moduleName":"./node_modules/lodash/_stackClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackClear.js","resolvedModule":"./node_modules/lodash/_stackClear.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"15:0-14","moduleId":7465,"resolvedModuleId":7465}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 15:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-40","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":405,"sizes":{"javascript":405},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackDelete.js","name":"./node_modules/lodash/_stackDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackDelete.js","index":150,"preOrderIndex":150,"index2":135,"postOrderIndex":135,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3779,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackDelete","loc":"3:18-43","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackDelete.js","module":"./node_modules/lodash/_stackDelete.js","moduleName":"./node_modules/lodash/_stackDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackDelete.js","resolvedModule":"./node_modules/lodash/_stackDelete.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":3779,"resolvedModuleId":3779}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (ExpressionStatement) with side effects in source code at 18:0-29","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":271,"sizes":{"javascript":271},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackGet.js","name":"./node_modules/lodash/_stackGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackGet.js","index":151,"preOrderIndex":151,"index2":136,"postOrderIndex":136,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7599,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackGet","loc":"4:15-37","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackGet.js","module":"./node_modules/lodash/_stackGet.js","moduleName":"./node_modules/lodash/_stackGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackGet.js","resolvedModule":"./node_modules/lodash/_stackGet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":7599,"resolvedModuleId":7599}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":323,"sizes":{"javascript":323},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackHas.js","name":"./node_modules/lodash/_stackHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackHas.js","index":152,"preOrderIndex":152,"index2":137,"postOrderIndex":137,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4758,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackHas","loc":"5:15-37","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackHas.js","module":"./node_modules/lodash/_stackHas.js","moduleName":"./node_modules/lodash/_stackHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackHas.js","resolvedModule":"./node_modules/lodash/_stackHas.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"14:0-14","moduleId":4758,"resolvedModuleId":4758}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 14:0-14","Statement (ExpressionStatement) with side effects in source code at 14:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":853,"sizes":{"javascript":853},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","name":"./node_modules/lodash/_stackSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","index":153,"preOrderIndex":153,"index2":138,"postOrderIndex":138,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","issuerName":"./node_modules/lodash/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatches.js","name":"./node_modules/lodash/_baseMatches.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1573},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMatch.js","name":"./node_modules/lodash/_baseIsMatch.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2958},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","name":"./node_modules/lodash/_Stack.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6384}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4309,"issuerId":6384,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","module":"./node_modules/lodash/_Stack.js","moduleName":"./node_modules/lodash/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_Stack.js","resolvedModule":"./node_modules/lodash/_Stack.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stackSet","loc":"6:15-37","moduleId":6384,"resolvedModuleId":6384},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","module":"./node_modules/lodash/_stackSet.js","moduleName":"./node_modules/lodash/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stackSet.js","resolvedModule":"./node_modules/lodash/_stackSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"34:0-14","moduleId":4309,"resolvedModuleId":4309}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 34:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":840,"sizes":{"javascript":840},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","index":48,"preOrderIndex":48,"index2":73,"postOrderIndex":73,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","issuerName":"./node_modules/lodash/_castPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514,"issuerId":1811,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_stringToPath","loc":"3:19-45","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","module":"./node_modules/lodash/_stringToPath.js","moduleName":"./node_modules/lodash/_stringToPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","resolvedModule":"./node_modules/lodash/_stringToPath.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":5514,"resolvedModuleId":5514}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-48","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":523,"sizes":{"javascript":523},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","name":"./node_modules/lodash/_toKey.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","index":84,"preOrderIndex":84,"index2":78,"postOrderIndex":78,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","issuerName":"./node_modules/lodash/_hasPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":327,"issuerId":222,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","module":"./node_modules/lodash/_baseGet.js","moduleName":"./node_modules/lodash/_baseGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGet.js","resolvedModule":"./node_modules/lodash/_baseGet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"2:12-31","moduleId":7786,"resolvedModuleId":7786},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"7:12-31","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"5:12-31","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"6:12-31","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","module":"./node_modules/lodash/_toKey.js","moduleName":"./node_modules/lodash/_toKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","resolvedModule":"./node_modules/lodash/_toKey.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":327,"resolvedModuleId":327},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toKey","loc":"4:12-31","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":556,"sizes":{"javascript":556},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toSource.js","name":"./node_modules/lodash/_toSource.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toSource.js","index":60,"preOrderIndex":60,"index2":43,"postOrderIndex":43,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","issuerName":"./node_modules/lodash/_getTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","name":"./node_modules/lodash/_getTag.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4160}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":346,"issuerId":4160,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toSource","loc":"4:15-37","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","module":"./node_modules/lodash/_getTag.js","moduleName":"./node_modules/lodash/_getTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getTag.js","resolvedModule":"./node_modules/lodash/_getTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_toSource","loc":"7:15-37","moduleId":4160,"resolvedModuleId":4160},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toSource.js","module":"./node_modules/lodash/_toSource.js","moduleName":"./node_modules/lodash/_toSource.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toSource.js","resolvedModule":"./node_modules/lodash/_toSource.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":346,"resolvedModuleId":346}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":515,"sizes":{"javascript":515},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_trimmedEndIndex.js","name":"./node_modules/lodash/_trimmedEndIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_trimmedEndIndex.js","index":114,"preOrderIndex":114,"index2":109,"postOrderIndex":109,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","issuerName":"./node_modules/lodash/_baseTrim.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","name":"./node_modules/lodash/toNumber.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":4841},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","name":"./node_modules/lodash/_baseTrim.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7561}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7990,"issuerId":7561,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","module":"./node_modules/lodash/_baseTrim.js","moduleName":"./node_modules/lodash/_baseTrim.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseTrim.js","resolvedModule":"./node_modules/lodash/_baseTrim.js","type":"cjs require","active":true,"explanation":"","userRequest":"./_trimmedEndIndex","loc":"1:22-51","moduleId":7561,"resolvedModuleId":7561},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_trimmedEndIndex.js","module":"./node_modules/lodash/_trimmedEndIndex.js","moduleName":"./node_modules/lodash/_trimmedEndIndex.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_trimmedEndIndex.js","resolvedModule":"./node_modules/lodash/_trimmedEndIndex.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"19:0-14","moduleId":7990,"resolvedModuleId":7990}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 19:0-14","Statement (ExpressionStatement) with side effects in source code at 19:0-33","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":679,"sizes":{"javascript":679},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","index":187,"preOrderIndex":187,"index2":203,"postOrderIndex":203,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","issuerName":"./node_modules/reactcss/lib/mergeClasses.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361,"issuerId":8556,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","module":"./node_modules/lodash/cloneDeep.js","moduleName":"./node_modules/lodash/cloneDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","resolvedModule":"./node_modules/lodash/cloneDeep.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"29:0-14","moduleId":361,"resolvedModuleId":361},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","module":"./node_modules/reactcss/lib/mergeClasses.js","moduleName":"./node_modules/reactcss/lib/mergeClasses.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","resolvedModule":"./node_modules/reactcss/lib/mergeClasses.js","type":"cjs require","active":true,"explanation":"","userRequest":"lodash/cloneDeep","loc":"12:18-45","moduleId":8556,"resolvedModuleId":8556}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 29:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-40","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":528,"sizes":{"javascript":528},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/constant.js","name":"./node_modules/lodash/constant.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/constant.js","index":101,"preOrderIndex":101,"index2":95,"postOrderIndex":95,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","issuerName":"./node_modules/lodash/_baseSetToString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_setToString.js","name":"./node_modules/lodash/_setToString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":61},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","name":"./node_modules/lodash/_baseSetToString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6560}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5703,"issuerId":6560,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","module":"./node_modules/lodash/_baseSetToString.js","moduleName":"./node_modules/lodash/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","resolvedModule":"./node_modules/lodash/_baseSetToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./constant","loc":"1:15-36","moduleId":6560,"resolvedModuleId":6560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/constant.js","module":"./node_modules/lodash/constant.js","moduleName":"./node_modules/lodash/constant.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/constant.js","resolvedModule":"./node_modules/lodash/constant.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":5703,"resolvedModuleId":5703}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (ExpressionStatement) with side effects in source code at 26:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6100,"sizes":{"javascript":6100},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","index":110,"preOrderIndex":110,"index2":112,"postOrderIndex":112,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"68:21-30","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"15:19-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"94:28-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"15:19-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"94:28-37","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"191:0-14","moduleId":3279,"resolvedModuleId":3279}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 191:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":39,"sizes":{"javascript":39},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","index":3,"preOrderIndex":3,"index2":38,"postOrderIndex":38,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","issuerName":"./src/_js/customizer/global-service.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"4:0-32","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"154:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"162:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"170:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"193:2-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"209:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"310:2-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"451:2-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"4:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"154:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"162:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"170:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"193:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"209:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"310:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/each","loc":"451:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","module":"./src/_js/customizer/global-service.js","moduleName":"./src/_js/customizer/global-service.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"1:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","module":"./src/_js/customizer/global-service.js","moduleName":"./src/_js/customizer/global-service.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"59:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"1:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"59:2-7","moduleId":9495,"resolvedModuleId":null}],"usedExports":true,"providedExports":null,"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 1:0-38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":799,"sizes":{"javascript":799},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/eq.js","name":"./node_modules/lodash/eq.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/eq.js","index":70,"preOrderIndex":70,"index2":55,"postOrderIndex":55,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","issuerName":"./node_modules/lodash/_assignValue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePickBy.js","name":"./node_modules/lodash/_basePickBy.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3012},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","name":"./node_modules/lodash/_baseSet.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":611},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","name":"./node_modules/lodash/_assignValue.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":4865}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7813,"issuerId":4865,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","module":"./node_modules/lodash/_assignValue.js","moduleName":"./node_modules/lodash/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assignValue.js","resolvedModule":"./node_modules/lodash/_assignValue.js","type":"cjs require","active":true,"explanation":"","userRequest":"./eq","loc":"2:9-24","moduleId":4865,"resolvedModuleId":4865},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","module":"./node_modules/lodash/_assocIndexOf.js","moduleName":"./node_modules/lodash/_assocIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_assocIndexOf.js","resolvedModule":"./node_modules/lodash/_assocIndexOf.js","type":"cjs require","active":true,"explanation":"","userRequest":"./eq","loc":"1:9-24","moduleId":8470,"resolvedModuleId":8470},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","module":"./node_modules/lodash/_equalByTag.js","moduleName":"./node_modules/lodash/_equalByTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalByTag.js","resolvedModule":"./node_modules/lodash/_equalByTag.js","type":"cjs require","active":true,"explanation":"","userRequest":"./eq","loc":"3:9-24","moduleId":8351,"resolvedModuleId":8351},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/eq.js","module":"./node_modules/lodash/eq.js","moduleName":"./node_modules/lodash/eq.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/eq.js","resolvedModule":"./node_modules/lodash/eq.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":7813,"resolvedModuleId":7813}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (ExpressionStatement) with side effects in source code at 37:0-20","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":489,"sizes":{"javascript":489},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","name":"./node_modules/lodash/flatten.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","index":93,"preOrderIndex":93,"index2":92,"postOrderIndex":92,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","issuerName":"./node_modules/lodash/_flatRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","name":"./node_modules/lodash/_flatRest.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9021}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5564,"issuerId":9021,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","module":"./node_modules/lodash/_flatRest.js","moduleName":"./node_modules/lodash/_flatRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_flatRest.js","resolvedModule":"./node_modules/lodash/_flatRest.js","type":"cjs require","active":true,"explanation":"","userRequest":"./flatten","loc":"1:14-34","moduleId":9021,"resolvedModuleId":9021},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","module":"./node_modules/lodash/flatten.js","moduleName":"./node_modules/lodash/flatten.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/flatten.js","resolvedModule":"./node_modules/lodash/flatten.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"22:0-14","moduleId":5564,"resolvedModuleId":5564}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 22:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-44","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1355,"sizes":{"javascript":1355},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","index":4,"preOrderIndex":4,"index2":37,"postOrderIndex":37,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","issuerName":"./node_modules/lodash/each.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486,"issuerId":6073,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","module":"./node_modules/lodash/each.js","moduleName":"./node_modules/lodash/each.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","resolvedModule":"./node_modules/lodash/each.js","type":"cjs export require","active":true,"explanation":"","userRequest":"./forEach","loc":"1:0-37","moduleId":6073,"resolvedModuleId":6073},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"41:0-14","moduleId":4486,"resolvedModuleId":4486}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 41:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":992,"sizes":{"javascript":992},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","name":"./node_modules/lodash/forOwn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","index":141,"preOrderIndex":141,"index2":131,"postOrderIndex":131,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/autoprefix.js","issuerName":"./node_modules/reactcss/lib/autoprefix.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/autoprefix.js","name":"./node_modules/reactcss/lib/autoprefix.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":4754}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2525,"issuerId":4754,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","module":"./node_modules/lodash/forOwn.js","moduleName":"./node_modules/lodash/forOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forOwn.js","resolvedModule":"./node_modules/lodash/forOwn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"36:0-14","moduleId":2525,"resolvedModuleId":2525},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/autoprefix.js","module":"./node_modules/reactcss/lib/autoprefix.js","moduleName":"./node_modules/reactcss/lib/autoprefix.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/autoprefix.js","resolvedModule":"./node_modules/reactcss/lib/autoprefix.js","type":"cjs require","active":true,"explanation":"","userRequest":"lodash/forOwn","loc":"8:15-39","moduleId":4754,"resolvedModuleId":4754},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","module":"./node_modules/reactcss/lib/flattenNames.js","moduleName":"./node_modules/reactcss/lib/flattenNames.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","resolvedModule":"./node_modules/reactcss/lib/flattenNames.js","type":"cjs require","active":true,"explanation":"","userRequest":"lodash/forOwn","loc":"12:15-39","moduleId":4147,"resolvedModuleId":4147},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","module":"./node_modules/reactcss/lib/mergeClasses.js","moduleName":"./node_modules/reactcss/lib/mergeClasses.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","resolvedModule":"./node_modules/reactcss/lib/mergeClasses.js","type":"cjs require","active":true,"explanation":"","userRequest":"lodash/forOwn","loc":"8:15-39","moduleId":8556,"resolvedModuleId":8556}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 36:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":884,"sizes":{"javascript":884},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","name":"./node_modules/lodash/get.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","index":181,"preOrderIndex":181,"index2":168,"postOrderIndex":168,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","issuerName":"./node_modules/lodash/_baseMatchesProperty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7361,"issuerId":6432,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./get","loc":"2:10-26","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","module":"./node_modules/lodash/get.js","moduleName":"./node_modules/lodash/get.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/get.js","resolvedModule":"./node_modules/lodash/get.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"33:0-14","moduleId":7361,"resolvedModuleId":7361}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 33:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":753,"sizes":{"javascript":753},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","name":"./node_modules/lodash/hasIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","index":89,"preOrderIndex":89,"index2":87,"postOrderIndex":87,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","issuerName":"./node_modules/lodash/_basePick.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","name":"./node_modules/lodash/_basePick.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5970}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":9095,"issuerId":5970,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","module":"./node_modules/lodash/_baseMatchesProperty.js","moduleName":"./node_modules/lodash/_baseMatchesProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","resolvedModule":"./node_modules/lodash/_baseMatchesProperty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./hasIn","loc":"3:12-30","moduleId":6432,"resolvedModuleId":6432},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","module":"./node_modules/lodash/_basePick.js","moduleName":"./node_modules/lodash/_basePick.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_basePick.js","resolvedModule":"./node_modules/lodash/_basePick.js","type":"cjs require","active":true,"explanation":"","userRequest":"./hasIn","loc":"2:12-30","moduleId":5970,"resolvedModuleId":5970},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","module":"./node_modules/lodash/hasIn.js","moduleName":"./node_modules/lodash/hasIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/hasIn.js","resolvedModule":"./node_modules/lodash/hasIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"34:0-14","moduleId":9095,"resolvedModuleId":9095}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 34:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":370,"sizes":{"javascript":370},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/identity.js","name":"./node_modules/lodash/identity.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/identity.js","index":40,"preOrderIndex":40,"index2":35,"postOrderIndex":35,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","issuerName":"./node_modules/lodash/_castFunction.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","name":"./node_modules/lodash/forEach.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4486},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","name":"./node_modules/lodash/_castFunction.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4290}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":6557,"issuerId":4290,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./identity","loc":"3:15-36","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","module":"./node_modules/lodash/_baseSetToString.js","moduleName":"./node_modules/lodash/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSetToString.js","resolvedModule":"./node_modules/lodash/_baseSetToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./identity","loc":"3:15-36","moduleId":6560,"resolvedModuleId":6560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","module":"./node_modules/lodash/_castFunction.js","moduleName":"./node_modules/lodash/_castFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castFunction.js","resolvedModule":"./node_modules/lodash/_castFunction.js","type":"cjs require","active":true,"explanation":"","userRequest":"./identity","loc":"1:15-36","moduleId":4290,"resolvedModuleId":4290},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/identity.js","module":"./node_modules/lodash/identity.js","moduleName":"./node_modules/lodash/identity.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/identity.js","resolvedModule":"./node_modules/lodash/identity.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"21:0-14","moduleId":6557,"resolvedModuleId":6557}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 21:0-14","Statement (ExpressionStatement) with side effects in source code at 21:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1026,"sizes":{"javascript":1026},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","name":"./node_modules/lodash/isArguments.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","index":13,"preOrderIndex":13,"index2":13,"postOrderIndex":13,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":5694,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArguments","loc":"2:18-42","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArguments","loc":"2:18-42","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","module":"./node_modules/lodash/_isFlattenable.js","moduleName":"./node_modules/lodash/_isFlattenable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","resolvedModule":"./node_modules/lodash/_isFlattenable.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArguments","loc":"2:18-42","moduleId":7285,"resolvedModuleId":7285},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","module":"./node_modules/lodash/isArguments.js","moduleName":"./node_modules/lodash/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","resolvedModule":"./node_modules/lodash/isArguments.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"36:0-14","moduleId":5694,"resolvedModuleId":5694},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArguments","loc":"3:18-42","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 36:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":488,"sizes":{"javascript":488},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArray.js","name":"./node_modules/lodash/isArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArray.js","index":22,"preOrderIndex":22,"index2":14,"postOrderIndex":14,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","issuerName":"./node_modules/lodash/isString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":1469,"issuerId":7037,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"3:14-34","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"16:14-34","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","module":"./node_modules/lodash/_baseGetAllKeys.js","moduleName":"./node_modules/lodash/_baseGetAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseGetAllKeys.js","resolvedModule":"./node_modules/lodash/_baseGetAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"2:14-34","moduleId":8866,"resolvedModuleId":8866},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"6:14-34","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"4:14-34","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"3:14-34","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"1:14-34","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"3:14-34","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","module":"./node_modules/lodash/_isFlattenable.js","moduleName":"./node_modules/lodash/_isFlattenable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isFlattenable.js","resolvedModule":"./node_modules/lodash/_isFlattenable.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"3:14-34","moduleId":7285,"resolvedModuleId":7285},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","module":"./node_modules/lodash/_isKey.js","moduleName":"./node_modules/lodash/_isKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","resolvedModule":"./node_modules/lodash/_isKey.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"1:14-34","moduleId":5403,"resolvedModuleId":5403},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","module":"./node_modules/lodash/forEach.js","moduleName":"./node_modules/lodash/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/forEach.js","resolvedModule":"./node_modules/lodash/forEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"4:14-34","moduleId":4486,"resolvedModuleId":4486},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArray.js","module":"./node_modules/lodash/isArray.js","moduleName":"./node_modules/lodash/isArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArray.js","resolvedModule":"./node_modules/lodash/isArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"26:0-14","moduleId":1469,"resolvedModuleId":1469},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"4:14-34","moduleId":1609,"resolvedModuleId":1609},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","module":"./node_modules/lodash/isString.js","moduleName":"./node_modules/lodash/isString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","resolvedModule":"./node_modules/lodash/isString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"2:14-34","moduleId":7037,"resolvedModuleId":7037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","module":"./node_modules/lodash/map.js","moduleName":"./node_modules/lodash/map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","resolvedModule":"./node_modules/lodash/map.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArray","loc":"4:14-34","moduleId":5161,"resolvedModuleId":5161}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 26:0-14","Statement (VariableDeclaration) with side effects in source code at 24:0-28","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":830,"sizes":{"javascript":830},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","name":"./node_modules/lodash/isArrayLike.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","index":35,"preOrderIndex":35,"index2":30,"postOrderIndex":30,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":8612,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","module":"./node_modules/lodash/_baseMap.js","moduleName":"./node_modules/lodash/_baseMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMap.js","resolvedModule":"./node_modules/lodash/_baseMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"2:18-42","moduleId":9199,"resolvedModuleId":9199},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","module":"./node_modules/lodash/_createBaseEach.js","moduleName":"./node_modules/lodash/_createBaseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createBaseEach.js","resolvedModule":"./node_modules/lodash/_createBaseEach.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"1:18-42","moduleId":9291,"resolvedModuleId":9291},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","module":"./node_modules/lodash/_createFind.js","moduleName":"./node_modules/lodash/_createFind.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","resolvedModule":"./node_modules/lodash/_createFind.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"2:18-42","moduleId":7740,"resolvedModuleId":7740},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","module":"./node_modules/lodash/includes.js","moduleName":"./node_modules/lodash/includes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","resolvedModule":"./node_modules/lodash/includes.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"2:18-42","moduleId":4721,"resolvedModuleId":4721},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","module":"./node_modules/lodash/isArrayLike.js","moduleName":"./node_modules/lodash/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","resolvedModule":"./node_modules/lodash/isArrayLike.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"33:0-14","moduleId":8612,"resolvedModuleId":8612},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"5:18-42","moduleId":1609,"resolvedModuleId":1609},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","module":"./node_modules/lodash/keys.js","moduleName":"./node_modules/lodash/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","resolvedModule":"./node_modules/lodash/keys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"3:18-42","moduleId":3674,"resolvedModuleId":3674},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","module":"./node_modules/lodash/keysIn.js","moduleName":"./node_modules/lodash/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","resolvedModule":"./node_modules/lodash/keysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isArrayLike","loc":"3:18-42","moduleId":1704,"resolvedModuleId":1704}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 33:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1114,"sizes":{"javascript":1114},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","name":"./node_modules/lodash/isBuffer.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","index":23,"preOrderIndex":23,"index2":16,"postOrderIndex":16,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4144,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isBuffer","loc":"4:15-36","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isBuffer","loc":"17:15-36","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isBuffer","loc":"7:15-36","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"5:48-55","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"5:60-76","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"5:80-87","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"8:61-67","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"8:72-78","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"module decorator","active":true,"explanation":"","userRequest":null,"loc":"8:91-97","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"38:0-14","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isBuffer","loc":"6:15-36","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: exports is used directly at 5:48-55","CommonJS bailout: exports is used directly at 5:80-87","CommonJS bailout: module.exports is used directly at 38:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:39","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":993,"sizes":{"javascript":993},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","name":"./node_modules/lodash/isFunction.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","index":36,"preOrderIndex":36,"index2":29,"postOrderIndex":29,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","issuerName":"./node_modules/lodash/isArrayLike.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","name":"./node_modules/lodash/isArrayLike.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":8612}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":3560,"issuerId":8612,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isFunction","loc":"1:17-40","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","module":"./node_modules/lodash/isArrayLike.js","moduleName":"./node_modules/lodash/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","resolvedModule":"./node_modules/lodash/isArrayLike.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isFunction","loc":"1:17-40","moduleId":8612,"resolvedModuleId":8612},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","module":"./node_modules/lodash/isFunction.js","moduleName":"./node_modules/lodash/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","resolvedModule":"./node_modules/lodash/isFunction.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":3560,"resolvedModuleId":3560}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":802,"sizes":{"javascript":802},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isLength.js","name":"./node_modules/lodash/isLength.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isLength.js","index":28,"preOrderIndex":28,"index2":18,"postOrderIndex":18,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","issuerName":"./node_modules/lodash/_hasPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":1780,"issuerId":222,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","module":"./node_modules/lodash/_baseIsTypedArray.js","moduleName":"./node_modules/lodash/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash/_baseIsTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isLength","loc":"2:15-36","moduleId":8749,"resolvedModuleId":8749},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","module":"./node_modules/lodash/_hasPath.js","moduleName":"./node_modules/lodash/_hasPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","resolvedModule":"./node_modules/lodash/_hasPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isLength","loc":"5:15-36","moduleId":222,"resolvedModuleId":222},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","module":"./node_modules/lodash/isArrayLike.js","moduleName":"./node_modules/lodash/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArrayLike.js","resolvedModule":"./node_modules/lodash/isArrayLike.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isLength","loc":"2:15-36","moduleId":8612,"resolvedModuleId":8612},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isLength.js","module":"./node_modules/lodash/isLength.js","moduleName":"./node_modules/lodash/isLength.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isLength.js","resolvedModule":"./node_modules/lodash/isLength.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"35:0-14","moduleId":1780,"resolvedModuleId":1780}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 35:0-14","Statement (ExpressionStatement) with side effects in source code at 35:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":613,"sizes":{"javascript":613},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","name":"./node_modules/lodash/isMap.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","index":210,"preOrderIndex":210,"index2":199,"postOrderIndex":199,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6688,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isMap","loc":"18:12-30","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","module":"./node_modules/lodash/isMap.js","moduleName":"./node_modules/lodash/isMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isMap.js","resolvedModule":"./node_modules/lodash/isMap.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":6688,"resolvedModuleId":6688}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":733,"sizes":{"javascript":733},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","name":"./node_modules/lodash/isObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","index":37,"preOrderIndex":37,"index2":28,"postOrderIndex":28,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","issuerName":"./node_modules/lodash/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3218,"issuerId":3279,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"19:15-36","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","module":"./node_modules/lodash/_baseCreate.js","moduleName":"./node_modules/lodash/_baseCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","resolvedModule":"./node_modules/lodash/_baseCreate.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":3118,"resolvedModuleId":3118},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"3:15-36","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","module":"./node_modules/lodash/_baseKeysIn.js","moduleName":"./node_modules/lodash/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","resolvedModule":"./node_modules/lodash/_baseKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":313,"resolvedModuleId":313},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"4:15-36","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","module":"./node_modules/lodash/_isStrictComparable.js","moduleName":"./node_modules/lodash/_isStrictComparable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","resolvedModule":"./node_modules/lodash/_isStrictComparable.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":9162,"resolvedModuleId":9162},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":3279,"resolvedModuleId":3279},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","module":"./node_modules/lodash/isFunction.js","moduleName":"./node_modules/lodash/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","resolvedModule":"./node_modules/lodash/isFunction.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"2:15-36","moduleId":3560,"resolvedModuleId":3560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","module":"./node_modules/lodash/isObject.js","moduleName":"./node_modules/lodash/isObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","resolvedModule":"./node_modules/lodash/isObject.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"31:0-14","moduleId":3218,"resolvedModuleId":3218},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"2:15-36","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 31:0-14","Statement (ExpressionStatement) with side effects in source code at 31:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":614,"sizes":{"javascript":614},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObjectLike.js","name":"./node_modules/lodash/isObjectLike.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObjectLike.js","index":21,"preOrderIndex":21,"index2":11,"postOrderIndex":11,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","issuerName":"./node_modules/lodash/isString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":7005,"issuerId":7037,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","module":"./node_modules/lodash/_baseIsArguments.js","moduleName":"./node_modules/lodash/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsArguments.js","resolvedModule":"./node_modules/lodash/_baseIsArguments.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":9454,"resolvedModuleId":9454},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","module":"./node_modules/lodash/_baseIsEqual.js","moduleName":"./node_modules/lodash/_baseIsEqual.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","resolvedModule":"./node_modules/lodash/_baseIsEqual.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":939,"resolvedModuleId":939},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","module":"./node_modules/lodash/_baseIsMap.js","moduleName":"./node_modules/lodash/_baseIsMap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsMap.js","resolvedModule":"./node_modules/lodash/_baseIsMap.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":5588,"resolvedModuleId":5588},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","module":"./node_modules/lodash/_baseIsSet.js","moduleName":"./node_modules/lodash/_baseIsSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsSet.js","resolvedModule":"./node_modules/lodash/_baseIsSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":9221,"resolvedModuleId":9221},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","module":"./node_modules/lodash/_baseIsTypedArray.js","moduleName":"./node_modules/lodash/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash/_baseIsTypedArray.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"3:19-44","moduleId":8749,"resolvedModuleId":8749},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","module":"./node_modules/lodash/isArguments.js","moduleName":"./node_modules/lodash/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isArguments.js","resolvedModule":"./node_modules/lodash/isArguments.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":5694,"resolvedModuleId":5694},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","module":"./node_modules/lodash/isNumber.js","moduleName":"./node_modules/lodash/isNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","resolvedModule":"./node_modules/lodash/isNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":1763,"resolvedModuleId":1763},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObjectLike.js","module":"./node_modules/lodash/isObjectLike.js","moduleName":"./node_modules/lodash/isObjectLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObjectLike.js","resolvedModule":"./node_modules/lodash/isObjectLike.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"29:0-14","moduleId":7005,"resolvedModuleId":7005},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","module":"./node_modules/lodash/isPlainObject.js","moduleName":"./node_modules/lodash/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","resolvedModule":"./node_modules/lodash/isPlainObject.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"3:19-44","moduleId":8630,"resolvedModuleId":8630},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","module":"./node_modules/lodash/isString.js","moduleName":"./node_modules/lodash/isString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","resolvedModule":"./node_modules/lodash/isString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"3:19-44","moduleId":7037,"resolvedModuleId":7037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","module":"./node_modules/lodash/isSymbol.js","moduleName":"./node_modules/lodash/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","resolvedModule":"./node_modules/lodash/isSymbol.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObjectLike","loc":"2:19-44","moduleId":3448,"resolvedModuleId":3448}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 29:0-14","Statement (ExpressionStatement) with side effects in source code at 29:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1650,"sizes":{"javascript":1650},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","name":"./node_modules/lodash/isPlainObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","index":142,"preOrderIndex":142,"index2":133,"postOrderIndex":133,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","issuerName":"./node_modules/reactcss/lib/flattenNames.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","name":"./node_modules/reactcss/lib/flattenNames.js","profile":{"total":26,"resolving":8,"restoring":0,"building":18,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":4147}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8630,"issuerId":4147,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","module":"./node_modules/lodash/isPlainObject.js","moduleName":"./node_modules/lodash/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isPlainObject.js","resolvedModule":"./node_modules/lodash/isPlainObject.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"62:0-14","moduleId":8630,"resolvedModuleId":8630},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","module":"./node_modules/reactcss/lib/flattenNames.js","moduleName":"./node_modules/reactcss/lib/flattenNames.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","resolvedModule":"./node_modules/reactcss/lib/flattenNames.js","type":"cjs require","active":true,"explanation":"","userRequest":"lodash/isPlainObject","loc":"16:22-53","moduleId":4147,"resolvedModuleId":4147}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 62:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":613,"sizes":{"javascript":613},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","name":"./node_modules/lodash/isSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","index":212,"preOrderIndex":212,"index2":201,"postOrderIndex":201,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2928,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSet","loc":"20:12-30","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","module":"./node_modules/lodash/isSet.js","moduleName":"./node_modules/lodash/isSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSet.js","resolvedModule":"./node_modules/lodash/isSet.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":2928,"resolvedModuleId":2928}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":723,"sizes":{"javascript":723},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","index":140,"preOrderIndex":140,"index2":130,"postOrderIndex":130,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isString","loc":"6:0-40","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/isString","loc":"34:8-17","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isString","loc":"6:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"lodash/isString","loc":"34:8-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","module":"./node_modules/lodash/includes.js","moduleName":"./node_modules/lodash/includes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","resolvedModule":"./node_modules/lodash/includes.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isString","loc":"3:15-36","moduleId":4721,"resolvedModuleId":4721},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","module":"./node_modules/lodash/isString.js","moduleName":"./node_modules/lodash/isString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","resolvedModule":"./node_modules/lodash/isString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":7037,"resolvedModuleId":7037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","module":"./node_modules/reactcss/lib/flattenNames.js","moduleName":"./node_modules/reactcss/lib/flattenNames.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","resolvedModule":"./node_modules/reactcss/lib/flattenNames.js","type":"cjs require","active":true,"explanation":"","userRequest":"lodash/isString","loc":"8:17-43","moduleId":4147,"resolvedModuleId":4147}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":682,"sizes":{"javascript":682},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","name":"./node_modules/lodash/isSymbol.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","index":47,"preOrderIndex":47,"index2":39,"postOrderIndex":39,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","issuerName":"./node_modules/lodash/toNumber.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","name":"./node_modules/lodash/toNumber.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":4841}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":3448,"issuerId":4841,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","module":"./node_modules/lodash/_baseToString.js","moduleName":"./node_modules/lodash/_baseToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseToString.js","resolvedModule":"./node_modules/lodash/_baseToString.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSymbol","loc":"4:15-36","moduleId":531,"resolvedModuleId":531},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","module":"./node_modules/lodash/_isKey.js","moduleName":"./node_modules/lodash/_isKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isKey.js","resolvedModule":"./node_modules/lodash/_isKey.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSymbol","loc":"2:15-36","moduleId":5403,"resolvedModuleId":5403},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","module":"./node_modules/lodash/_toKey.js","moduleName":"./node_modules/lodash/_toKey.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_toKey.js","resolvedModule":"./node_modules/lodash/_toKey.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSymbol","loc":"1:15-36","moduleId":327,"resolvedModuleId":327},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","module":"./node_modules/lodash/isSymbol.js","moduleName":"./node_modules/lodash/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isSymbol.js","resolvedModule":"./node_modules/lodash/isSymbol.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"29:0-14","moduleId":3448,"resolvedModuleId":3448},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isSymbol","loc":"3:15-36","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 29:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":695,"sizes":{"javascript":695},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","name":"./node_modules/lodash/isTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","index":26,"preOrderIndex":26,"index2":22,"postOrderIndex":22,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","issuerName":"./node_modules/lodash/isEmpty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":6719,"issuerId":1609,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","module":"./node_modules/lodash/_arrayLikeKeys.js","moduleName":"./node_modules/lodash/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash/_arrayLikeKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isTypedArray","loc":"6:19-44","moduleId":4636,"resolvedModuleId":4636},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","module":"./node_modules/lodash/_baseIsEqualDeep.js","moduleName":"./node_modules/lodash/_baseIsEqualDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","resolvedModule":"./node_modules/lodash/_baseIsEqualDeep.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isTypedArray","loc":"8:19-44","moduleId":2492,"resolvedModuleId":2492},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isTypedArray","loc":"8:19-44","moduleId":1609,"resolvedModuleId":1609},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","module":"./node_modules/lodash/isTypedArray.js","moduleName":"./node_modules/lodash/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isTypedArray.js","resolvedModule":"./node_modules/lodash/isTypedArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"27:0-14","moduleId":6719,"resolvedModuleId":6719}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 27:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":884,"sizes":{"javascript":884},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","name":"./node_modules/lodash/keys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","index":10,"preOrderIndex":10,"index2":31,"postOrderIndex":31,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","issuerName":"./node_modules/lodash/_createFind.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3674,"issuerId":7740,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","module":"./node_modules/lodash/_baseAssign.js","moduleName":"./node_modules/lodash/_baseAssign.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssign.js","resolvedModule":"./node_modules/lodash/_baseAssign.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"2:11-28","moduleId":4037,"resolvedModuleId":4037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"21:11-28","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","module":"./node_modules/lodash/_baseForOwn.js","moduleName":"./node_modules/lodash/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseForOwn.js","resolvedModule":"./node_modules/lodash/_baseForOwn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"2:11-28","moduleId":7816,"resolvedModuleId":7816},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","module":"./node_modules/lodash/_createFind.js","moduleName":"./node_modules/lodash/_createFind.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","resolvedModule":"./node_modules/lodash/_createFind.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"3:11-28","moduleId":7740,"resolvedModuleId":7740},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","module":"./node_modules/lodash/_getAllKeys.js","moduleName":"./node_modules/lodash/_getAllKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","resolvedModule":"./node_modules/lodash/_getAllKeys.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"3:11-28","moduleId":8234,"resolvedModuleId":8234},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","module":"./node_modules/lodash/_getMatchData.js","moduleName":"./node_modules/lodash/_getMatchData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getMatchData.js","resolvedModule":"./node_modules/lodash/_getMatchData.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"2:11-28","moduleId":1499,"resolvedModuleId":1499},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","module":"./node_modules/lodash/keys.js","moduleName":"./node_modules/lodash/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keys.js","resolvedModule":"./node_modules/lodash/keys.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"37:0-14","moduleId":3674,"resolvedModuleId":3674},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","module":"./node_modules/lodash/values.js","moduleName":"./node_modules/lodash/values.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/values.js","resolvedModule":"./node_modules/lodash/values.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keys","loc":"2:11-28","moduleId":2628,"resolvedModuleId":2628}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 37:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:43","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":778,"sizes":{"javascript":778},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","name":"./node_modules/lodash/keysIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","index":192,"preOrderIndex":192,"index2":181,"postOrderIndex":181,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","issuerName":"./node_modules/lodash/_baseClone.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/cloneDeep.js","name":"./node_modules/lodash/cloneDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":361},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","name":"./node_modules/lodash/_baseClone.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5990}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1704,"issuerId":5990,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignIn.js","module":"./node_modules/lodash/_baseAssignIn.js","moduleName":"./node_modules/lodash/_baseAssignIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseAssignIn.js","resolvedModule":"./node_modules/lodash/_baseAssignIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keysIn","loc":"2:13-32","moduleId":3886,"resolvedModuleId":3886},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keysIn","loc":"22:13-32","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","module":"./node_modules/lodash/_getAllKeysIn.js","moduleName":"./node_modules/lodash/_getAllKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeysIn.js","resolvedModule":"./node_modules/lodash/_getAllKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./keysIn","loc":"3:13-32","moduleId":6904,"resolvedModuleId":6904},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","module":"./node_modules/lodash/keysIn.js","moduleName":"./node_modules/lodash/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/keysIn.js","resolvedModule":"./node_modules/lodash/keysIn.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":1704,"resolvedModuleId":1704}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:43","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":10},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1621,"sizes":{"javascript":1621},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","name":"./node_modules/lodash/map.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","index":144,"preOrderIndex":144,"index2":175,"postOrderIndex":175,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","issuerName":"./node_modules/reactcss/lib/flattenNames.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","name":"./node_modules/reactcss/lib/flattenNames.js","profile":{"total":26,"resolving":8,"restoring":0,"building":18,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":4147}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5161,"issuerId":4147,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","module":"./node_modules/lodash/map.js","moduleName":"./node_modules/lodash/map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/map.js","resolvedModule":"./node_modules/lodash/map.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"53:0-14","moduleId":5161,"resolvedModuleId":5161},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","module":"./node_modules/reactcss/lib/flattenNames.js","moduleName":"./node_modules/reactcss/lib/flattenNames.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","resolvedModule":"./node_modules/reactcss/lib/flattenNames.js","type":"cjs require","active":true,"explanation":"","userRequest":"lodash/map","loc":"20:12-33","moduleId":4147,"resolvedModuleId":4147}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 53:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:35","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2224,"sizes":{"javascript":2224},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","name":"./node_modules/lodash/memoize.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","index":50,"preOrderIndex":50,"index2":71,"postOrderIndex":71,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","issuerName":"./node_modules/lodash/_memoizeCapped.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_stringToPath.js","name":"./node_modules/lodash/_stringToPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5514},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","name":"./node_modules/lodash/_memoizeCapped.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4523}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8306,"issuerId":4523,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","module":"./node_modules/lodash/_memoizeCapped.js","moduleName":"./node_modules/lodash/_memoizeCapped.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_memoizeCapped.js","resolvedModule":"./node_modules/lodash/_memoizeCapped.js","type":"cjs require","active":true,"explanation":"","userRequest":"./memoize","loc":"1:14-34","moduleId":4523,"resolvedModuleId":4523},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","module":"./node_modules/lodash/memoize.js","moduleName":"./node_modules/lodash/memoize.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/memoize.js","resolvedModule":"./node_modules/lodash/memoize.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"73:0-14","moduleId":8306,"resolvedModuleId":8306}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 73:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":520,"sizes":{"javascript":520},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","name":"./node_modules/lodash/now.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","index":111,"preOrderIndex":111,"index2":108,"postOrderIndex":108,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","issuerName":"./node_modules/lodash/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7771,"issuerId":3279,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs require","active":true,"explanation":"","userRequest":"./now","loc":"2:10-26","moduleId":3279,"resolvedModuleId":3279},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","module":"./node_modules/lodash/now.js","moduleName":"./node_modules/lodash/now.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","resolvedModule":"./node_modules/lodash/now.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":7771,"resolvedModuleId":7771}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":629,"sizes":{"javascript":629},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","index":41,"preOrderIndex":41,"index2":100,"postOrderIndex":100,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","issuerName":"./src/_js/customizer/global-service.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","module":"./src/_js/customizer/global-service.js","moduleName":"./src/_js/customizer/global-service.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/pick","loc":"2:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","module":"./src/_js/customizer/global-service.js","moduleName":"./src/_js/customizer/global-service.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/pick","loc":"57:24-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/pick","loc":"2:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/pick","loc":"57:24-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","module":"./node_modules/lodash/pick.js","moduleName":"./node_modules/lodash/pick.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","resolvedModule":"./node_modules/lodash/pick.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":8718,"resolvedModuleId":8718}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":793,"sizes":{"javascript":793},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","name":"./node_modules/lodash/property.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","index":182,"preOrderIndex":182,"index2":172,"postOrderIndex":172,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","issuerName":"./node_modules/lodash/_baseIteratee.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9601,"issuerId":7206,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","module":"./node_modules/lodash/_baseIteratee.js","moduleName":"./node_modules/lodash/_baseIteratee.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","resolvedModule":"./node_modules/lodash/_baseIteratee.js","type":"cjs require","active":true,"explanation":"","userRequest":"./property","loc":"5:15-36","moduleId":7206,"resolvedModuleId":7206},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","module":"./node_modules/lodash/property.js","moduleName":"./node_modules/lodash/property.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/property.js","resolvedModule":"./node_modules/lodash/property.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"32:0-14","moduleId":9601,"resolvedModuleId":9601}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 32:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-4:32","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":390,"sizes":{"javascript":390},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubArray.js","name":"./node_modules/lodash/stubArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubArray.js","index":171,"preOrderIndex":171,"index2":152,"postOrderIndex":152,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","issuerName":"./node_modules/lodash/_getSymbols.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_createFind.js","name":"./node_modules/lodash/_createFind.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7740},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIteratee.js","name":"./node_modules/lodash/_baseIteratee.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":7206},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseMatchesProperty.js","name":"./node_modules/lodash/_baseMatchesProperty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6432},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqual.js","name":"./node_modules/lodash/_baseIsEqual.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":1,"dependencies":4},"id":939},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsEqualDeep.js","name":"./node_modules/lodash/_baseIsEqualDeep.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2492},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_equalObjects.js","name":"./node_modules/lodash/_equalObjects.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":6096},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getAllKeys.js","name":"./node_modules/lodash/_getAllKeys.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":8234},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","name":"./node_modules/lodash/_getSymbols.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":9551}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":479,"issuerId":9551,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","module":"./node_modules/lodash/_getSymbols.js","moduleName":"./node_modules/lodash/_getSymbols.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbols.js","resolvedModule":"./node_modules/lodash/_getSymbols.js","type":"cjs require","active":true,"explanation":"","userRequest":"./stubArray","loc":"2:16-38","moduleId":9551,"resolvedModuleId":9551},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","module":"./node_modules/lodash/_getSymbolsIn.js","moduleName":"./node_modules/lodash/_getSymbolsIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_getSymbolsIn.js","resolvedModule":"./node_modules/lodash/_getSymbolsIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./stubArray","loc":"4:16-38","moduleId":1442,"resolvedModuleId":1442},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubArray.js","module":"./node_modules/lodash/stubArray.js","moduleName":"./node_modules/lodash/stubArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubArray.js","resolvedModule":"./node_modules/lodash/stubArray.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":479,"resolvedModuleId":479}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (ExpressionStatement) with side effects in source code at 23:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":11},{"type":"module","moduleType":"javascript/auto","layer":null,"size":280,"sizes":{"javascript":280},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubFalse.js","name":"./node_modules/lodash/stubFalse.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubFalse.js","index":24,"preOrderIndex":24,"index2":15,"postOrderIndex":15,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","issuerName":"./node_modules/lodash/isBuffer.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","name":"./node_modules/lodash/isBuffer.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":0,"dependencies":2},"id":4144}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5062,"issuerId":4144,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","module":"./node_modules/lodash/isBuffer.js","moduleName":"./node_modules/lodash/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isBuffer.js","resolvedModule":"./node_modules/lodash/isBuffer.js","type":"cjs require","active":true,"explanation":"","userRequest":"./stubFalse","loc":"2:16-38","moduleId":4144,"resolvedModuleId":4144},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubFalse.js","module":"./node_modules/lodash/stubFalse.js","moduleName":"./node_modules/lodash/stubFalse.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/stubFalse.js","resolvedModule":"./node_modules/lodash/stubFalse.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:0-14","moduleId":5062,"resolvedModuleId":5062}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:0-14","Statement (ExpressionStatement) with side effects in source code at 18:0-27","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1519,"sizes":{"javascript":1519},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","name":"./node_modules/lodash/toNumber.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","index":112,"preOrderIndex":112,"index2":111,"postOrderIndex":111,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","issuerName":"./node_modules/lodash/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":4841,"issuerId":3279,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toNumber","loc":"3:15-36","moduleId":3279,"resolvedModuleId":3279},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","module":"./node_modules/lodash/toFinite.js","moduleName":"./node_modules/lodash/toFinite.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","resolvedModule":"./node_modules/lodash/toFinite.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toNumber","loc":"1:15-36","moduleId":8601,"resolvedModuleId":8601},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"64:0-14","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 64:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":580,"sizes":{"javascript":580},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","name":"./node_modules/lodash/toString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","index":81,"preOrderIndex":81,"index2":76,"postOrderIndex":76,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","issuerName":"./node_modules/lodash/_castPath.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_hasPath.js","name":"./node_modules/lodash/_hasPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":222},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","name":"./node_modules/lodash/_castPath.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":0,"dependencies":4},"id":1811}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":9833,"issuerId":1811,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","module":"./node_modules/lodash/_castPath.js","moduleName":"./node_modules/lodash/_castPath.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_castPath.js","resolvedModule":"./node_modules/lodash/_castPath.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toString","loc":"4:15-36","moduleId":1811,"resolvedModuleId":1811},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","module":"./node_modules/lodash/toString.js","moduleName":"./node_modules/lodash/toString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toString.js","resolvedModule":"./node_modules/lodash/toString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"28:0-14","moduleId":9833,"resolvedModuleId":9833}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 28:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-46","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2108,"sizes":{"javascript":2108},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/object-assign/index.js","name":"./node_modules/object-assign/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/object-assign/index.js","index":132,"preOrderIndex":132,"index2":124,"postOrderIndex":124,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/cjs/react.production.min.js","issuerName":"./node_modules/react/cjs/react.production.min.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/index.js","name":"./node_modules/react/index.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":127,"dependencies":11},"id":7294},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/cjs/react.production.min.js","name":"./node_modules/react/cjs/react.production.min.js","profile":{"total":43,"resolving":17,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":2408}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7418,"issuerId":2408,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/object-assign/index.js","module":"./node_modules/object-assign/index.js","moduleName":"./node_modules/object-assign/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/object-assign/index.js","resolvedModule":"./node_modules/object-assign/index.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"65:0-14","moduleId":7418,"resolvedModuleId":7418},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/cjs/react.production.min.js","module":"./node_modules/react/cjs/react.production.min.js","moduleName":"./node_modules/react/cjs/react.production.min.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/cjs/react.production.min.js","resolvedModule":"./node_modules/react/cjs/react.production.min.js","type":"cjs require","active":true,"explanation":"","userRequest":"object-assign","loc":"9:19-43","moduleId":2408,"resolvedModuleId":2408}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 65:0-14","Statement (VariableDeclaration) with side effects in source code at 9:0-57","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1621,"sizes":{"javascript":1621},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/factoryWithThrowingShims.js","name":"./node_modules/prop-types/factoryWithThrowingShims.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/factoryWithThrowingShims.js","index":136,"preOrderIndex":136,"index2":128,"postOrderIndex":128,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","issuerName":"./node_modules/prop-types/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","name":"./node_modules/prop-types/index.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":0,"dependencies":13},"id":5697}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2703,"issuerId":5697,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/factoryWithThrowingShims.js","module":"./node_modules/prop-types/factoryWithThrowingShims.js","moduleName":"./node_modules/prop-types/factoryWithThrowingShims.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/factoryWithThrowingShims.js","resolvedModule":"./node_modules/prop-types/factoryWithThrowingShims.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"16:0-14","moduleId":2703,"resolvedModuleId":2703},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","module":"./node_modules/prop-types/index.js","moduleName":"./node_modules/prop-types/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","resolvedModule":"./node_modules/prop-types/index.js","type":"cjs require","active":true,"explanation":"","userRequest":"./factoryWithThrowingShims","loc":"18:19-56","moduleId":5697,"resolvedModuleId":5697}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 16:0-14","Statement (VariableDeclaration) with side effects in source code at 10:0-65","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":710,"sizes":{"javascript":710},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","name":"./node_modules/prop-types/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","index":135,"preOrderIndex":135,"index2":129,"postOrderIndex":129,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","issuerName":"./node_modules/react-color/es/components/sketch/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":0,"dependencies":13},"id":5697,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"prop-types","loc":"2:0-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"86:14-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"87:10-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"88:10-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"89:10-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"prop-types","loc":"4:0-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"166:16-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"167:9-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"167:30-46","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"167:48-64","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"168:10-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"prop-types","loc":"4:0-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"74:10-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"74:28-47","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"74:49-65","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"74:67-82","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"75:11-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"76:11-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","module":"./node_modules/prop-types/index.js","moduleName":"./node_modules/prop-types/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","resolvedModule":"./node_modules/prop-types/index.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"18:2-16","moduleId":5697,"resolvedModuleId":5697},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"prop-types","loc":"2:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"86:14-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"87:10-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"88:10-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"89:10-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"prop-types","loc":"4:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"166:16-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"167:9-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"167:30-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"167:48-64","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"168:10-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"prop-types","loc":"4:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"74:10-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"74:28-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"74:49-65","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"74:67-82","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"75:11-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"prop-types","loc":"76:11-27","moduleId":null,"resolvedModuleId":null}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 18:2-16","Statement (ExpressionStatement) with side effects in source code at 18:2-59","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":314,"sizes":{"javascript":314},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/lib/ReactPropTypesSecret.js","name":"./node_modules/prop-types/lib/ReactPropTypesSecret.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/lib/ReactPropTypesSecret.js","index":137,"preOrderIndex":137,"index2":127,"postOrderIndex":127,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/factoryWithThrowingShims.js","issuerName":"./node_modules/prop-types/factoryWithThrowingShims.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/index.js","name":"./node_modules/prop-types/index.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":0,"dependencies":13},"id":5697},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/factoryWithThrowingShims.js","name":"./node_modules/prop-types/factoryWithThrowingShims.js","profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":2703}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":414,"issuerId":2703,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/factoryWithThrowingShims.js","module":"./node_modules/prop-types/factoryWithThrowingShims.js","moduleName":"./node_modules/prop-types/factoryWithThrowingShims.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/factoryWithThrowingShims.js","resolvedModule":"./node_modules/prop-types/factoryWithThrowingShims.js","type":"cjs require","active":true,"explanation":"","userRequest":"./lib/ReactPropTypesSecret","loc":"10:27-64","moduleId":2703,"resolvedModuleId":2703},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/lib/ReactPropTypesSecret.js","module":"./node_modules/prop-types/lib/ReactPropTypesSecret.js","moduleName":"./node_modules/prop-types/lib/ReactPropTypesSecret.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/prop-types/lib/ReactPropTypesSecret.js","resolvedModule":"./node_modules/prop-types/lib/ReactPropTypesSecret.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"12:0-14","moduleId":414,"resolvedModuleId":414}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 12:0-14","Statement (ExpressionStatement) with side effects in source code at 12:0-38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6450,"sizes":{"javascript":6450},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/cjs/react.production.min.js","name":"./node_modules/react/cjs/react.production.min.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/cjs/react.production.min.js","index":131,"preOrderIndex":131,"index2":125,"postOrderIndex":125,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/index.js","issuerName":"./node_modules/react/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/index.js","name":"./node_modules/react/index.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":127,"dependencies":11},"id":7294}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":17,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":2408,"issuerId":7294,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/index.js","module":"./node_modules/react/index.js","moduleName":"./node_modules/react/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/index.js","resolvedModule":"./node_modules/react/index.js","type":"cjs export require","active":true,"explanation":"","userRequest":"./cjs/react.production.min.js","loc":"4:2-59","moduleId":7294,"resolvedModuleId":7294}],"usedExports":true,"providedExports":["Children","Component","Fragment","Profiler","PureComponent","StrictMode","Suspense","__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED","cloneElement","createContext","createElement","createFactory","createRef","forwardRef","isValidElement","lazy","memo","useCallback","useContext","useDebugValue","useEffect","useImperativeHandle","useLayoutEffect","useMemo","useReducer","useRef","useState","version"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 9:13-60","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":190,"sizes":{"javascript":190},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/index.js","name":"./node_modules/react/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react/index.js","index":130,"preOrderIndex":130,"index2":126,"postOrderIndex":126,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","issuerName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":127,"dependencies":11},"id":7294,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","module":"./src/_js/customizer/colors/components/source-colors/color-picker.js","moduleName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"13:0-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","module":"./src/_js/customizer/colors/components/source-colors/color-picker.js","moduleName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"26:22-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","module":"./src/_js/customizer/colors/components/source-colors/color-picker.js","moduleName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"28:18-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","module":"./src/_js/customizer/colors/components/source-colors/color-picker.js","moduleName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"33:19-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","module":"./src/_js/customizer/colors/components/source-colors/color-picker.js","moduleName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"38:18-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"13:0-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"26:22-41","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"28:18-37","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"33:19-38","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"38:18-37","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"11:0-56","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"108:13-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"111:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"114:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"116:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"117:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"128:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"131:33-52","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"131:87-106","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"139:2-15","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"139:19-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-46","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"26:9-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"26:36-54","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"26:157-176","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"11:0-56","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"58:15-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"70:4-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"70:21-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"11:0-56","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"154:13-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"157:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"170:52-71","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"184:2-15","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"184:19-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"9:0-56","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"94:13-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"97:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"109:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"114:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"117:33-52","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"117:87-106","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"125:2-15","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"125:19-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"1:0-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"73:9-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"76:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"77:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"9:0-56","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"119:13-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"130:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"135:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"138:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"139:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"142:33-52","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"142:87-106","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"150:2-15","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"150:19-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"53:9-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"63:19-38","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"103:9-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"106:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"109:6-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"116:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"119:6-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"122:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"125:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"131:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"134:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"143:6-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"146:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"147:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"150:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"157:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"89:9-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"92:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"95:6-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"102:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"105:6-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"114:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"117:6-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"126:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"129:6-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"138:4-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"141:6-25","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"51:9-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"57:13-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"60:8-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","resolvedModule":"./node_modules/react-color/es/helpers/interaction.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"12:0-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","resolvedModule":"./node_modules/react-color/es/helpers/interaction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"40:15-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","resolvedModule":"./node_modules/react-color/es/helpers/interaction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"43:10-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","resolvedModule":"./node_modules/react-color/es/helpers/interaction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"49:4-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"11:0-56","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"108:13-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"111:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"114:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"116:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"117:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"128:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"131:33-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"131:87-106","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"139:2-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"139:19-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"26:9-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"26:36-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"26:157-176","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"11:0-56","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"58:15-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"70:4-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"70:21-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","module":"./node_modules/react-color/es/components/common/EditableInput.js","moduleName":"./node_modules/react-color/es/components/common/EditableInput.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"11:0-56","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","module":"./node_modules/react-color/es/components/common/EditableInput.js","moduleName":"./node_modules/react-color/es/components/common/EditableInput.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"154:13-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","module":"./node_modules/react-color/es/components/common/EditableInput.js","moduleName":"./node_modules/react-color/es/components/common/EditableInput.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"157:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","module":"./node_modules/react-color/es/components/common/EditableInput.js","moduleName":"./node_modules/react-color/es/components/common/EditableInput.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"170:52-71","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","module":"./node_modules/react-color/es/components/common/EditableInput.js","moduleName":"./node_modules/react-color/es/components/common/EditableInput.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"184:2-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","module":"./node_modules/react-color/es/components/common/EditableInput.js","moduleName":"./node_modules/react-color/es/components/common/EditableInput.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"184:19-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"9:0-56","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"94:13-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"97:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"109:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"114:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"117:33-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"117:87-106","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"125:2-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"125:19-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"1:0-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"73:9-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"76:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"77:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"9:0-56","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"119:13-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"130:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"135:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"138:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"139:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"142:33-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"142:87-106","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"150:2-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"150:19-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"53:9-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"63:19-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"103:9-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"106:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"109:6-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"116:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"119:6-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"122:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"125:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"131:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"134:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"143:6-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"146:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"147:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"150:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"157:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"89:9-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"92:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"95:6-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"102:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"105:6-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"114:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"117:6-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"126:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"129:6-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"138:4-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"141:6-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"3:0-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"51:9-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"57:13-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"60:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","module":"./node_modules/react-color/es/helpers/interaction.js","moduleName":"./node_modules/react-color/es/helpers/interaction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","resolvedModule":"./node_modules/react-color/es/helpers/interaction.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react","loc":"12:0-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","module":"./node_modules/react-color/es/helpers/interaction.js","moduleName":"./node_modules/react-color/es/helpers/interaction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","resolvedModule":"./node_modules/react-color/es/helpers/interaction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"40:15-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","module":"./node_modules/react-color/es/helpers/interaction.js","moduleName":"./node_modules/react-color/es/helpers/interaction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","resolvedModule":"./node_modules/react-color/es/helpers/interaction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"43:10-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","module":"./node_modules/react-color/es/helpers/interaction.js","moduleName":"./node_modules/react-color/es/helpers/interaction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","resolvedModule":"./node_modules/react-color/es/helpers/interaction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react","loc":"49:4-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/components/active.js","module":"./node_modules/reactcss/lib/components/active.js","moduleName":"./node_modules/reactcss/lib/components/active.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/components/active.js","resolvedModule":"./node_modules/reactcss/lib/components/active.js","type":"cjs require","active":true,"explanation":"","userRequest":"react","loc":"10:13-29","moduleId":6002,"resolvedModuleId":6002},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/components/hover.js","module":"./node_modules/reactcss/lib/components/hover.js","moduleName":"./node_modules/reactcss/lib/components/hover.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/components/hover.js","resolvedModule":"./node_modules/reactcss/lib/components/hover.js","type":"cjs require","active":true,"explanation":"","userRequest":"react","loc":"10:13-29","moduleId":1765,"resolvedModuleId":1765}],"usedExports":true,"providedExports":["Children","Component","Fragment","Profiler","PureComponent","StrictMode","Suspense","__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED","cloneElement","createContext","createElement","createFactory","createRef","forwardRef","isValidElement","lazy","memo","useCallback","useContext","useDebugValue","useEffect","useImperativeHandle","useLayoutEffect","useMemo","useReducer","useRef","useState","version"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 4:2-60","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3082,"sizes":{"javascript":3082},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/autoprefix.js","name":"./node_modules/reactcss/lib/autoprefix.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/autoprefix.js","index":214,"preOrderIndex":214,"index2":205,"postOrderIndex":205,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","issuerName":"./node_modules/reactcss/lib/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941}],"failed":false,"errors":0,"warnings":0,"profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":4754,"issuerId":9941,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","module":"./node_modules/reactcss/lib/index.js","moduleName":"./node_modules/reactcss/lib/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","resolvedModule":"./node_modules/reactcss/lib/index.js","type":"cjs require","active":true,"explanation":"","userRequest":"./autoprefix","loc":"16:18-41","moduleId":9941,"resolvedModuleId":9941}],"usedExports":true,"providedExports":["__esModule","autoprefix","default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 3:0-5:3","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2739,"sizes":{"javascript":2739},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/components/active.js","name":"./node_modules/reactcss/lib/components/active.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/components/active.js","index":216,"preOrderIndex":216,"index2":207,"postOrderIndex":207,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","issuerName":"./node_modules/reactcss/lib/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941}],"failed":false,"errors":0,"warnings":0,"profile":{"total":33,"resolving":11,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":11,"dependencies":0},"id":6002,"issuerId":9941,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","module":"./node_modules/reactcss/lib/index.js","moduleName":"./node_modules/reactcss/lib/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","resolvedModule":"./node_modules/reactcss/lib/index.js","type":"cjs require","active":true,"explanation":"","userRequest":"./components/active","loc":"24:14-44","moduleId":9941,"resolvedModuleId":9941}],"usedExports":true,"providedExports":["__esModule","active","default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 3:0-5:3","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2728,"sizes":{"javascript":2728},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/components/hover.js","name":"./node_modules/reactcss/lib/components/hover.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/components/hover.js","index":215,"preOrderIndex":215,"index2":206,"postOrderIndex":206,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","issuerName":"./node_modules/reactcss/lib/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941}],"failed":false,"errors":0,"warnings":0,"profile":{"total":32,"resolving":11,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":11,"dependencies":0},"id":1765,"issuerId":9941,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","module":"./node_modules/reactcss/lib/index.js","moduleName":"./node_modules/reactcss/lib/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","resolvedModule":"./node_modules/reactcss/lib/index.js","type":"cjs require","active":true,"explanation":"","userRequest":"./components/hover","loc":"20:14-43","moduleId":9941,"resolvedModuleId":9941}],"usedExports":true,"providedExports":["__esModule","default","hover"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 3:0-5:3","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1293,"sizes":{"javascript":1293},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","name":"./node_modules/reactcss/lib/flattenNames.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","index":139,"preOrderIndex":139,"index2":176,"postOrderIndex":176,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","issuerName":"./node_modules/reactcss/lib/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941}],"failed":false,"errors":0,"warnings":0,"profile":{"total":26,"resolving":8,"restoring":0,"building":18,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":4147,"issuerId":9941,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","module":"./node_modules/reactcss/lib/index.js","moduleName":"./node_modules/reactcss/lib/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","resolvedModule":"./node_modules/reactcss/lib/index.js","type":"cjs require","active":true,"explanation":"","userRequest":"./flattenNames","loc":"8:20-45","moduleId":9941,"resolvedModuleId":9941}],"usedExports":true,"providedExports":["__esModule","default","flattenNames"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 3:0-5:3","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1447,"sizes":{"javascript":1447},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","index":138,"preOrderIndex":138,"index2":209,"postOrderIndex":209,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","issuerName":"./node_modules/react-color/es/components/sketch/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"12:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"57:19-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"4:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"16:15-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"12:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"134:19-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"10:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"59:19-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"3:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"14:15-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"10:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"79:19-27","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"4:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"25:15-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"5:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"28:15-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"4:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"16:15-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"5:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"15:15-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"12:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"57:19-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"4:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"16:15-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","module":"./node_modules/react-color/es/components/common/EditableInput.js","moduleName":"./node_modules/react-color/es/components/common/EditableInput.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"12:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","module":"./node_modules/react-color/es/components/common/EditableInput.js","moduleName":"./node_modules/react-color/es/components/common/EditableInput.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","resolvedModule":"./node_modules/react-color/es/components/common/EditableInput.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"134:19-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"10:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"59:19-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"3:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"14:15-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"10:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"79:19-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"4:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"25:15-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"5:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"28:15-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"4:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"16:15-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"reactcss","loc":"5:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"reactcss","loc":"15:15-23","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["ReactCSS","__esModule","default","handleActive","handleHover","hover","loop"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 3:0-5:3","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":554,"sizes":{"javascript":554},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/loop.js","name":"./node_modules/reactcss/lib/loop.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/loop.js","index":217,"preOrderIndex":217,"index2":208,"postOrderIndex":208,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","issuerName":"./node_modules/reactcss/lib/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":9,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":7742,"issuerId":9941,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","module":"./node_modules/reactcss/lib/index.js","moduleName":"./node_modules/reactcss/lib/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","resolvedModule":"./node_modules/reactcss/lib/index.js","type":"cjs require","active":true,"explanation":"","userRequest":"./loop","loc":"28:13-30","moduleId":9941,"resolvedModuleId":9941}],"usedExports":true,"providedExports":["__esModule","default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 3:0-5:3","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1289,"sizes":{"javascript":1289},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","name":"./node_modules/reactcss/lib/mergeClasses.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/mergeClasses.js","index":186,"preOrderIndex":186,"index2":204,"postOrderIndex":204,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","issuerName":"./node_modules/reactcss/lib/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","name":"./node_modules/reactcss/lib/index.js","profile":{"total":80,"resolving":39,"restoring":0,"building":41,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":39,"dependencies":3},"id":9941}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":8,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":8556,"issuerId":9941,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","module":"./node_modules/reactcss/lib/index.js","moduleName":"./node_modules/reactcss/lib/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/index.js","resolvedModule":"./node_modules/reactcss/lib/index.js","type":"cjs require","active":true,"explanation":"","userRequest":"./mergeClasses","loc":"12:20-45","moduleId":9941,"resolvedModuleId":9941}],"usedExports":true,"providedExports":["__esModule","default","mergeClasses"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 3:0-5:3","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6827,"sizes":{"javascript":6827},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","name":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","index":124,"preOrderIndex":124,"index2":118,"postOrderIndex":118,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","issuerName":"./src/_js/customizer-preview/style.scss","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./src/_js/customizer-preview/style.scss","profile":{"total":352,"resolving":326,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":326,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3379,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-95","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-95","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","module":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","moduleName":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","resolvedModule":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"230:0-14","moduleId":3379,"resolvedModuleId":3379}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 230:0-14","Statement (VariableDeclaration) with side effects in source code at 3:0-17:4","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":36699,"sizes":{"javascript":36699},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/tinycolor2/tinycolor.js","name":"./node_modules/tinycolor2/tinycolor.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/tinycolor2/tinycolor.js","index":334,"preOrderIndex":334,"index2":323,"postOrderIndex":323,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","issuerName":"./node_modules/react-color/es/helpers/color.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7621,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"tinycolor2","loc":"2:0-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"tinycolor2","loc":"26:25-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"tinycolor2","loc":"26:47-56","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"tinycolor2","loc":"53:57-66","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"tinycolor2","loc":"77:9-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","module":"./node_modules/react-color/es/helpers/color.js","moduleName":"./node_modules/react-color/es/helpers/color.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"tinycolor2","loc":"2:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","module":"./node_modules/react-color/es/helpers/color.js","moduleName":"./node_modules/react-color/es/helpers/color.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"tinycolor2","loc":"26:25-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","module":"./node_modules/react-color/es/helpers/color.js","moduleName":"./node_modules/react-color/es/helpers/color.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"tinycolor2","loc":"26:47-56","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","module":"./node_modules/react-color/es/helpers/color.js","moduleName":"./node_modules/react-color/es/helpers/color.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"tinycolor2","loc":"53:57-66","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","module":"./node_modules/react-color/es/helpers/color.js","moduleName":"./node_modules/react-color/es/helpers/color.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"tinycolor2","loc":"77:9-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/tinycolor2/tinycolor.js","module":"./node_modules/tinycolor2/tinycolor.js","moduleName":"./node_modules/tinycolor2/tinycolor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/tinycolor2/tinycolor.js","resolvedModule":"./node_modules/tinycolor2/tinycolor.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"1183:37-51","moduleId":7621,"resolvedModuleId":7621},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/tinycolor2/tinycolor.js","module":"./node_modules/tinycolor2/tinycolor.js","moduleName":"./node_modules/tinycolor2/tinycolor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/tinycolor2/tinycolor.js","resolvedModule":"./node_modules/tinycolor2/tinycolor.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"1184:4-18","moduleId":7621,"resolvedModuleId":7621}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 1183:37-51","CommonJS bailout: module.exports is used directly at 1184:4-18","Statement (ExpressionStatement) with side effects in source code at 5:0-1195:9","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":234579,"sizes":{"javascript":234579},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","name":"./src/_js/customizer/index.js + 169 modules","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","index":0,"preOrderIndex":0,"index2":368,"postOrderIndex":368,"cacheable":true,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":9495,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer/index.js","loc":"customizer","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer/index.js","loc":"customizer.min","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null}],"usedExports":true,"providedExports":["convertFontVariantToFVD","determineFontType","getCSSFromPalettes","getFontDetails"],"optimizationBailout":["ModuleConcatenation bailout: Cannot concat with ./node_modules/chroma-js/chroma.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss: Module uses module.id","ModuleConcatenation bailout: Cannot concat with ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss: Module uses module.id","ModuleConcatenation bailout: Cannot concat with ./node_modules/hsluv/hsluv.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/debounce.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/each.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/pick.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/prop-types/index.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/react/index.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/reactcss/lib/index.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/tinycolor2/tinycolor.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with external \"jQuery\": Module is not in strict mode"],"depth":0,"modules":[{"type":"module","moduleType":"javascript/auto","layer":null,"size":1326,"sizes":{"javascript":1326},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","index":0,"preOrderIndex":0,"index2":368,"postOrderIndex":368,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":null,"issuerName":null,"issuerPath":null,"failed":false,"errors":0,"warnings":0,"profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[],"usedExports":true,"providedExports":["convertFontVariantToFVD","determineFontType","getCSSFromPalettes","getFontDetails"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 12:0-31:3"],"depth":0},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2325,"sizes":{"javascript":2325},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","index":2,"preOrderIndex":2,"index2":101,"postOrderIndex":101,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../global-service","loc":"5:0-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"33:17-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"36:2-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"37:2-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"38:2-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"44:33-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"48:27-57","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../global-service","loc":"3:0-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../global-service","loc":"5:0-73","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"96:2-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"99:6-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"100:28-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"111:25-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./global-service","loc":"5:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./global-service","loc":"13:2-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./global-service","loc":"14:17-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./global-service","loc":"16:2-35","moduleId":null,"resolvedModuleId":null}],"usedExports":["bindConnectedFields","getCallback","getSetting","getSettingConfig","getSettings","loadSettings","setCallback","setSettings","unbindConnectedFields"],"providedExports":["bindConnectedFields","deleteCallbacks","getCallback","getCallbacks","getSetting","getSettingConfig","getSettings","loadSettings","setCallback","setSetting","setSettings","unbindConnectedFields"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 3:0-19"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3700,"sizes":{"javascript":3700},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","name":"./src/_js/customizer/create-reset-buttons.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","index":103,"preOrderIndex":103,"index2":103,"postOrderIndex":103,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":251,"resolving":8,"restoring":0,"building":243,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./create-reset-buttons","loc":"11:0-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./create-reset-buttons","loc":"17:2-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["createResetButtons"],"providedExports":["createResetButtons"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2273,"sizes":{"javascript":2273},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","name":"./src/_js/customizer/fields/range/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","index":105,"preOrderIndex":105,"index2":104,"postOrderIndex":104,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":552,"resolving":255,"restoring":0,"building":297,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":255,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fields/range","loc":"7:0-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./fields/range","loc":"18:2-19","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleRangeFields"],"providedExports":["handleRangeFields"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2003,"sizes":{"javascript":2003},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","name":"./src/_js/customizer/fields/color-select/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","index":106,"preOrderIndex":106,"index2":105,"postOrderIndex":105,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":552,"resolving":255,"restoring":0,"building":297,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":255,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fields/color-select","loc":"6:0-64","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./fields/color-select","loc":"19:2-25","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleColorSelectFields"],"providedExports":["convertToColorSelect","handleColorSelectFields"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":873,"sizes":{"javascript":873},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","name":"./src/_js/customizer/fields/tabs/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","index":107,"preOrderIndex":107,"index2":106,"postOrderIndex":106,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":552,"resolving":255,"restoring":0,"building":297,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":255,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fields/tabs","loc":"8:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./fields/tabs","loc":"20:2-12","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleTabs"],"providedExports":["handleTabs"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":4966,"sizes":{"javascript":4966},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","name":"./src/_js/customizer/folding-fields.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","index":108,"preOrderIndex":108,"index2":107,"postOrderIndex":107,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":99,"resolving":7,"restoring":0,"building":92,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./folding-fields","loc":"9:0-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./folding-fields","loc":"23:4-23","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleFoldingFields"],"providedExports":["handleFoldingFields"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3289,"sizes":{"javascript":3289},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","name":"./src/_js/customizer/colors/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","index":109,"preOrderIndex":109,"index2":350,"postOrderIndex":350,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":351,"resolving":99,"restoring":0,"building":252,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":99,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./colors","loc":"2:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./colors","loc":"27:2-18","moduleId":null,"resolvedModuleId":null}],"usedExports":["initializeColors"],"providedExports":["initializeColors"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":4726,"sizes":{"javascript":4726},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","index":116,"preOrderIndex":116,"index2":347,"postOrderIndex":347,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","module":"./src/_js/customizer/colors/color-palette-builder/index.js","moduleName":"./src/_js/customizer/colors/color-palette-builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","resolvedModule":"./src/_js/customizer/colors/color-palette-builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../components/builder","loc":"1:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","module":"./src/_js/customizer/colors/color-palette-builder/index.js","moduleName":"./src/_js/customizer/colors/color-palette-builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","resolvedModule":"./src/_js/customizer/colors/color-palette-builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../components/builder","loc":"15:54-61","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./colors/components/builder","loc":"34:0-65","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./colors/components/builder","loc":"34:0-65","moduleId":null,"resolvedModuleId":null}],"usedExports":["Builder"],"providedExports":["Builder","addAutoPalettes","getBestPositionInPalette","getCSSFromPalettes","getColorVariables","getColorsFromInputValue","getFunctionalColors","getInitialColorVaraibles","getPalettesFromColors","getSourceIndex","getValueFromColors","getVariablesCSS","mapAddSourceIndex","mapAddTextColors","mapColorToPalette","mapCorrectLightness","mapInterpolateSource","mapSanitizePalettes","mapUseSource"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 18:0-20:36"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":16020,"sizes":{"javascript":16020},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","name":"./src/_js/customizer/colors/components/builder/utils.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","index":117,"preOrderIndex":117,"index2":116,"postOrderIndex":116,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","issuerName":"./src/_js/customizer/colors/components/builder/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":804,"resolving":364,"restoring":0,"building":440,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":364,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"15:0-113","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"17:0-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./utils","loc":"17:0-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"28:27-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"58:14-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"72:22-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"75:16-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"83:17-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./colors/components/builder","loc":"34:0-65","moduleId":null,"resolvedModuleId":null}],"usedExports":["getCSSFromPalettes","getColorsFromInputValue","getPalettesFromColors","getValueFromColors"],"providedExports":["addAutoPalettes","getBestPositionInPalette","getCSSFromPalettes","getColorVariables","getColorsFromInputValue","getFunctionalColors","getInitialColorVaraibles","getPalettesFromColors","getSourceIndex","getValueFromColors","getVariablesCSS","mapAddSourceIndex","mapAddTextColors","mapColorToPalette","mapCorrectLightness","mapInterpolateSource","mapSanitizePalettes","mapUseSource"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":5030,"sizes":{"javascript":5030},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","name":"./src/_js/customizer/fonts/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","index":352,"preOrderIndex":352,"index2":364,"postOrderIndex":364,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":352,"resolving":100,"restoring":0,"building":252,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":100,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fonts","loc":"3:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./fonts","loc":"28:2-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["initializeFonts"],"providedExports":["initializeFonts"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 94:0-114:7"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1100,"sizes":{"javascript":1100},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","index":355,"preOrderIndex":355,"index2":352,"postOrderIndex":352,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"4:0-198","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"15:2-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"37:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"39:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"41:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"65:23-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"67:2-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"69:2-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"77:4-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"77:30-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"83:18-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"87:11-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"88:8-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"105:31-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./index","loc":"2:0-68","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./index","loc":"22:16-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./index","loc":"23:18-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"27:2-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./index","loc":"2:0-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"12:6-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"17:2-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"76:2-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./index","loc":"2:0-82","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"12:6-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"12:44-66","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"17:2-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"46:18-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"60:25-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"79:2-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null}],"usedExports":["getSettingID","getWrapper"],"providedExports":["convertFontVariantToFVD","determineFontType","fontsService","getCallbackFilter","getFontDetails","getSettingID","getWrapper","handleFontPopupToggle","initSubfield","loadFontValue","selfUpdateValue","standardizeNumericalValue","updateFontHeadTitle","updateVariantField"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":872,"sizes":{"javascript":872},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","name":"./src/_js/customizer/fonts/utils/get-font-details.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","index":359,"preOrderIndex":359,"index2":356,"postOrderIndex":356,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":582,"resolving":235,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":235,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"65:23-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./get-font-details","loc":"4:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./get-font-details","loc":"4:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"60:25-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null}],"usedExports":["getFontDetails"],"providedExports":["getFontDetails"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":632,"sizes":{"javascript":632},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/determine-font-type.js","name":"./src/_js/customizer/fonts/utils/determine-font-type.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/determine-font-type.js","index":360,"preOrderIndex":360,"index2":355,"postOrderIndex":355,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":581,"resolving":234,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":234,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","module":"./src/_js/customizer/fonts/utils/get-font-details.js","moduleName":"./src/_js/customizer/fonts/utils/get-font-details.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","resolvedModule":"./src/_js/customizer/fonts/utils/get-font-details.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./determine-font-type","loc":"1:0-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","module":"./src/_js/customizer/fonts/utils/get-font-details.js","moduleName":"./src/_js/customizer/fonts/utils/get-font-details.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","resolvedModule":"./src/_js/customizer/fonts/utils/get-font-details.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./determine-font-type","loc":"7:15-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./determine-font-type","loc":"3:0-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./determine-font-type","loc":"3:0-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null}],"usedExports":["determineFontType"],"providedExports":["determineFontType"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1433,"sizes":{"javascript":1433},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","name":"./src/_js/customizer/font-palettes/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","index":366,"preOrderIndex":366,"index2":365,"postOrderIndex":365,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":366,"resolving":251,"restoring":0,"building":115,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":251,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./font-palettes","loc":"4:0-57","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./font-palettes","loc":"29:2-24","moduleId":null,"resolvedModuleId":null}],"usedExports":["initializeFontPalettes"],"providedExports":["initializeFontPalettes"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1473,"sizes":{"javascript":1473},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","name":"./src/_js/customizer/scale-preview.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","index":367,"preOrderIndex":367,"index2":366,"postOrderIndex":366,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":251,"resolving":7,"restoring":0,"building":244,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./scale-preview","loc":"10:0-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./scale-preview","loc":"30:2-14","moduleId":null,"resolvedModuleId":null}],"usedExports":["scalePreview"],"providedExports":["scalePreview"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1331,"sizes":{"javascript":1331},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/convert-font-variant.js","name":"./src/_js/customizer/fonts/utils/convert-font-variant.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/convert-font-variant.js","index":368,"preOrderIndex":368,"index2":367,"postOrderIndex":367,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":580,"resolving":233,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":233,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./convert-font-variant","loc":"2:0-65","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./convert-font-variant","loc":"2:0-65","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null}],"usedExports":["convertFontVariantToFVD"],"providedExports":["convertFontVariantToFVD"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1575,"sizes":{"javascript":1575},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/api-set-setting-value.js","name":"./src/_js/customizer/utils/api-set-setting-value.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/api-set-setting-value.js","index":104,"preOrderIndex":104,"index2":102,"postOrderIndex":102,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","issuerName":"./src/_js/customizer/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","name":"./src/_js/customizer/create-reset-buttons.js","profile":{"total":251,"resolving":8,"restoring":0,"building":243,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","name":"./src/_js/customizer/utils/index.js","profile":{"total":895,"resolving":639,"restoring":0,"building":256,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":639,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":328,"resolving":211,"restoring":0,"building":117,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":211,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"64:6-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"91:12-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"116:8-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","module":"./src/_js/customizer/utils/index.js","moduleName":"./src/_js/customizer/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","resolvedModule":"./src/_js/customizer/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./api-set-setting-value","loc":"1:0-61","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","module":"./src/_js/customizer/utils/index.js","moduleName":"./src/_js/customizer/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","resolvedModule":"./src/_js/customizer/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./api-set-setting-value","loc":"1:0-61","moduleId":null,"resolvedModuleId":null}],"usedExports":["apiSetSettingValue"],"providedExports":["apiSetSettingValue"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":698,"sizes":{"javascript":698},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","name":"./src/_js/customizer/colors/color-palette-builder/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","index":115,"preOrderIndex":115,"index2":348,"postOrderIndex":348,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","issuerName":"./src/_js/customizer/colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","name":"./src/_js/customizer/colors/index.js","profile":{"total":351,"resolving":99,"restoring":0,"building":252,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":99,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":846,"resolving":577,"restoring":0,"building":269,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":577,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./color-palette-builder","loc":"2:0-67","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./color-palette-builder","loc":"9:2-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["initializePaletteBuilder"],"providedExports":["initializePaletteBuilder"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1230,"sizes":{"javascript":1230},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/contrast-array.js","name":"./src/_js/customizer/colors/components/builder/contrast-array.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/contrast-array.js","index":120,"preOrderIndex":120,"index2":115,"postOrderIndex":115,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","issuerName":"./src/_js/customizer/colors/components/builder/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","name":"./src/_js/customizer/colors/components/builder/utils.js","profile":{"total":804,"resolving":364,"restoring":0,"building":440,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":364,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":141,"resolving":69,"restoring":0,"building":72,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":69,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./contrast-array","loc":"21:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./contrast-array","loc":"209:42-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./contrast-array","loc":"277:38-51","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-3:3"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":112,"sizes":{"javascript":112},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/context.js","name":"./src/_js/customizer/colors/context.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/context.js","index":121,"preOrderIndex":121,"index2":117,"postOrderIndex":117,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","issuerName":"./src/_js/customizer/colors/components/builder/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":617,"resolving":362,"restoring":0,"building":255,"integration":0,"storing":0,"additionalResolving":12,"additionalIntegration":0,"factory":362,"dependencies":12},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../context","loc":"14:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../context","loc":"85:42-64","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../context","loc":"16:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../context","loc":"26:31-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../context","loc":"101:32-45","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-45"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6954,"sizes":{"javascript":6954},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","index":122,"preOrderIndex":122,"index2":346,"postOrderIndex":346,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","issuerName":"./src/_js/customizer/colors/components/builder/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../source-colors","loc":"13:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../source-colors","loc":"92:38-50","moduleId":null,"resolvedModuleId":null}],"usedExports":["SourceColors"],"providedExports":["SourceColors"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 18:0-22:32"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1237,"sizes":{"javascript":1237},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/utils.js","name":"./src/_js/customizer/colors/utils.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/utils.js","index":351,"preOrderIndex":351,"index2":349,"postOrderIndex":349,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","issuerName":"./src/_js/customizer/colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","name":"./src/_js/customizer/colors/index.js","profile":{"total":351,"resolving":99,"restoring":0,"building":252,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":99,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":574,"resolving":189,"restoring":0,"building":385,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":189,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"3:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"61:19-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"65:19-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["moveConnectedFields"],"providedExports":["moveConnectedFields"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":740,"sizes":{"javascript":740},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","name":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","index":353,"preOrderIndex":353,"index2":351,"postOrderIndex":351,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":582,"resolving":235,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":235,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"15:2-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./handle-font-popup-toggle","loc":"5:0-67","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./handle-font-popup-toggle","loc":"5:0-67","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleFontPopupToggle"],"providedExports":["handleFontPopupToggle"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1014,"sizes":{"javascript":1014},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","name":"./src/_js/customizer/fonts/utils/init-subfield.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","index":354,"preOrderIndex":354,"index2":358,"postOrderIndex":358,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":582,"resolving":236,"restoring":0,"building":346,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":236,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"37:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"39:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"41:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./init-subfield","loc":"6:0-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./init-subfield","loc":"6:0-47","moduleId":null,"resolvedModuleId":null}],"usedExports":["initSubfield"],"providedExports":["initSubfield"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3464,"sizes":{"javascript":3464},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","name":"./src/_js/customizer/fonts/utils/self-update-value.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","index":356,"preOrderIndex":356,"index2":357,"postOrderIndex":357,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":583,"resolving":237,"restoring":0,"building":346,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":237,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"77:4-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./self-update-value","loc":"8:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./self-update-value","loc":"8:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"27:2-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["selfUpdateValue"],"providedExports":["selfUpdateValue"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":414,"sizes":{"javascript":414},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/fonts-service.js","name":"./src/_js/customizer/fonts/utils/fonts-service.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/fonts-service.js","index":357,"preOrderIndex":357,"index2":353,"postOrderIndex":353,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":596,"resolving":340,"restoring":0,"building":256,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":340,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"87:11-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fonts-service","loc":"12:0-49","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"(skipped side-effect-free modules)","userRequest":"./fonts-service","loc":"13:0-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"12:6-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"17:2-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"76:2-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"12:6-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"12:44-66","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"17:2-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"79:2-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["isLoading","isUpdating","setLoading","setUpdating"],"providedExports":["isLoading","isUpdating","setLoading","setUpdating"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-18"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2712,"sizes":{"javascript":2712},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","name":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","index":358,"preOrderIndex":358,"index2":354,"postOrderIndex":354,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":593,"resolving":237,"restoring":0,"building":356,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":237,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./standardize-numerical-value","loc":"1:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./standardize-numerical-value","loc":"42:33-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./standardize-numerical-value","loc":"76:42-67","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./standardize-numerical-value","loc":"107:37-62","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./standardize-numerical-value","loc":"9:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./standardize-numerical-value","loc":"9:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./standardize-numerical-value","loc":"4:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./standardize-numerical-value","loc":"30:26-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"46:18-43","moduleId":null,"resolvedModuleId":null}],"usedExports":["standardizeNumericalValue"],"providedExports":["standardizeNumericalValue"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":600,"sizes":{"javascript":600},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","name":"./src/_js/customizer/fonts/utils/update-font-head-title.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","index":361,"preOrderIndex":361,"index2":359,"postOrderIndex":359,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":594,"resolving":238,"restoring":0,"building":356,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":238,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"67:2-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./update-font-head-title","loc":"10:0-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./update-font-head-title","loc":"10:0-63","moduleId":null,"resolvedModuleId":null}],"usedExports":["updateFontHeadTitle"],"providedExports":["updateFontHeadTitle"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2211,"sizes":{"javascript":2211},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","name":"./src/_js/customizer/fonts/utils/update-variant-field.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","index":362,"preOrderIndex":362,"index2":360,"postOrderIndex":360,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":596,"resolving":340,"restoring":0,"building":256,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":340,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"69:2-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./update-variant-field","loc":"11:0-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./update-variant-field","loc":"11:0-60","moduleId":null,"resolvedModuleId":null}],"usedExports":["updateVariantField"],"providedExports":["updateVariantField"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3381,"sizes":{"javascript":3381},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","name":"./src/_js/customizer/fonts/utils/load-font-value.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","index":363,"preOrderIndex":363,"index2":362,"postOrderIndex":362,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":582,"resolving":236,"restoring":0,"building":346,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":236,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"88:8-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./load-font-value","loc":"7:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./load-font-value","loc":"7:0-50","moduleId":null,"resolvedModuleId":null}],"usedExports":["loadFontValue"],"providedExports":["loadFontValue"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":5326,"sizes":{"javascript":5326},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","name":"./src/_js/customizer/fonts/utils/callback-filter.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","index":365,"preOrderIndex":365,"index2":363,"postOrderIndex":363,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":580,"resolving":233,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":233,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"105:31-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./callback-filter","loc":"1:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./callback-filter","loc":"1:0-54","moduleId":null,"resolvedModuleId":null}],"usedExports":["getCallbackFilter"],"providedExports":["getCallbackFilter"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":412,"sizes":{"javascript":412},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","name":"./src/_js/customizer/colors/components/source-colors/style.scss","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","index":123,"preOrderIndex":123,"index2":121,"postOrderIndex":121,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","issuerName":"./src/_js/customizer/colors/components/source-colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":16,"resolving":15,"restoring":0,"building":1,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":15,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./style.scss","loc":"23:0-22","moduleId":null,"resolvedModuleId":null}],"usedExports":[],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-17"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3837,"sizes":{"javascript":3837},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/utils.js","name":"./src/_js/customizer/colors/components/source-colors/utils.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/utils.js","index":127,"preOrderIndex":127,"index2":122,"postOrderIndex":122,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","issuerName":"./src/_js/customizer/colors/components/source-colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":121,"resolving":21,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"17:0-89","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"32:16-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"106:14-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"112:16-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"117:16-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"127:16-27","moduleId":null,"resolvedModuleId":null}],"usedExports":["addNewColorGroup","addNewColorToGroup","deleteColor","updateColor"],"providedExports":["addNewColorGroup","addNewColorToGroup","deleteColor","getNewColor","getNewColorGroup","getNewColorHex","updateColor"],"optimizationBailout":[],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":657,"sizes":{"javascript":657},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/use-outside-click.js","name":"./src/_js/customizer/utils/use-outside-click.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/use-outside-click.js","index":128,"preOrderIndex":128,"index2":123,"postOrderIndex":123,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","issuerName":"./src/_js/customizer/colors/components/source-colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","module":"./src/_js/customizer/colors/components/contextual-menu/index.js","moduleName":"./src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../../utils/use-outside-click","loc":"14:0-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","module":"./src/_js/customizer/colors/components/contextual-menu/index.js","moduleName":"./src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../utils/use-outside-click","loc":"36:2-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../../utils/use-outside-click","loc":"15:0-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../utils/use-outside-click","loc":"133:2-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-37"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2674,"sizes":{"javascript":2674},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","index":129,"preOrderIndex":129,"index2":342,"postOrderIndex":342,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","issuerName":"./src/_js/customizer/colors/components/source-colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./color-picker","loc":"13:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./color-picker","loc":"167:38-49","moduleId":null,"resolvedModuleId":null}],"usedExports":["ColorPicker"],"providedExports":["ColorPicker"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 15:0-35"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3345,"sizes":{"javascript":3345},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","name":"./src/_js/customizer/colors/components/contextual-menu/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","index":348,"preOrderIndex":348,"index2":345,"postOrderIndex":345,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","issuerName":"./src/_js/customizer/colors/components/source-colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":241,"resolving":131,"restoring":0,"building":110,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":131,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../contextual-menu","loc":"14:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../contextual-menu","loc":"188:39-53","moduleId":null,"resolvedModuleId":null}],"usedExports":["ContextualMenu"],"providedExports":["ContextualMenu"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 15:0-18:32"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":144,"sizes":{"javascript":144},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/round.js","name":"./src/_js/customizer/fonts/utils/round.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/round.js","index":364,"preOrderIndex":364,"index2":361,"postOrderIndex":361,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","issuerName":"./src/_js/customizer/fonts/utils/callback-filter.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","name":"./src/_js/customizer/fonts/utils/callback-filter.js","profile":{"total":580,"resolving":233,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":233,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":345,"resolving":225,"restoring":0,"building":120,"integration":0,"storing":0,"additionalResolving":225,"additionalIntegration":0,"factory":225,"dependencies":225},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./round","loc":"2:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./round","loc":"57:41-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./round","loc":"97:43-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./round","loc":"3:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./round","loc":"50:32-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./round","loc":"53:32-37","moduleId":null,"resolvedModuleId":null}],"usedExports":["round"],"providedExports":["round"],"optimizationBailout":[],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":82,"sizes":{"javascript":82},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","index":133,"preOrderIndex":133,"index2":341,"postOrderIndex":341,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","issuerName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","module":"./src/_js/customizer/colors/components/source-colors/color-picker.js","moduleName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react-color/es/Sketch","loc":"14:0-49","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","module":"./src/_js/customizer/colors/components/source-colors/color-picker.js","moduleName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react-color/es/Sketch","loc":"38:38-50","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Dependency (harmony side effect evaluation) with side effects at 1:0-50"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":412,"sizes":{"javascript":412},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","name":"./src/_js/customizer/colors/components/contextual-menu/style.scss","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","index":349,"preOrderIndex":349,"index2":344,"postOrderIndex":344,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","issuerName":"./src/_js/customizer/colors/components/contextual-menu/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","name":"./src/_js/customizer/colors/components/contextual-menu/index.js","profile":{"total":241,"resolving":131,"restoring":0,"building":110,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":131,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":7,"resolving":6,"restoring":0,"building":1,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","module":"./src/_js/customizer/colors/components/contextual-menu/index.js","moduleName":"./src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./style.scss","loc":"13:0-22","moduleId":null,"resolvedModuleId":null}],"usedExports":[],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-17"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":4979,"sizes":{"javascript":4979},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","index":134,"preOrderIndex":134,"index2":340,"postOrderIndex":340,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","issuerName":"./node_modules/react-color/es/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","module":"./node_modules/react-color/es/Sketch.js","moduleName":"./node_modules/react-color/es/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","resolvedModule":"./node_modules/react-color/es/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./components/sketch/Sketch","loc":"1:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","module":"./node_modules/react-color/es/Sketch.js","moduleName":"./node_modules/react-color/es/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","resolvedModule":"./node_modules/react-color/es/Sketch.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./components/sketch/Sketch","loc":"2:0-31","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Sketch","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":395,"sizes":{"javascript":395},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","index":218,"preOrderIndex":218,"index2":337,"postOrderIndex":337,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","issuerName":"./node_modules/react-color/es/components/sketch/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../common","loc":"8:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"109:26-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"125:30-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"134:30-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"146:28-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"178:15-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../common","loc":"7:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"95:26-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"105:26-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"117:26-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"129:26-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"141:26-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../common","loc":"7:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"60:28-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["Alpha","Checkboard","ColorWrap","EditableInput","Hue","Saturation","Swatch"],"providedExports":["Alpha","Checkboard","ColorWrap","EditableInput","Hue","Raised","Saturation","Swatch"],"optimizationBailout":["Dependency (harmony side effect evaluation) with side effects at 1:0-43"],"depth":6},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1218,"sizes":{"javascript":1218},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","index":227,"preOrderIndex":227,"index2":312,"postOrderIndex":312,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","issuerName":"./node_modules/react-color/es/components/sketch/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"lodash-es/merge","loc":"4:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash-es/merge","loc":"14:24-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"lodash-es/merge","loc":"6:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash-es/merge","loc":"28:24-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 35:0-37:3"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3555,"sizes":{"javascript":3555},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","index":346,"preOrderIndex":346,"index2":338,"postOrderIndex":338,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","issuerName":"./node_modules/react-color/es/components/sketch/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./SketchFields","loc":"9:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./SketchFields","loc":"150:24-36","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["SketchFields","default"],"optimizationBailout":["Dependency (harmony side effect evaluation) with side effects at 3:0-26"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2282,"sizes":{"javascript":2282},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","name":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","index":347,"preOrderIndex":347,"index2":339,"postOrderIndex":339,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","issuerName":"./node_modules/react-color/es/components/sketch/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":13,"resolving":8,"restoring":0,"building":5,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./SketchPresetColors","loc":"10:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./SketchPresetColors","loc":"157:24-42","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["SketchPresetColors","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6082,"sizes":{"javascript":6082},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","name":"./node_modules/react-color/es/components/common/Alpha.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","index":219,"preOrderIndex":219,"index2":213,"postOrderIndex":213,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Alpha","loc":"1:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./Alpha","loc":"1:0-43","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Alpha","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1291,"sizes":{"javascript":1291},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","name":"./node_modules/react-color/es/components/common/Checkboard.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","index":220,"preOrderIndex":220,"index2":211,"postOrderIndex":211,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":14,"resolving":4,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Checkboard","loc":"15:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./Checkboard","loc":"114:30-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Checkboard","loc":"7:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./Checkboard","loc":"63:39-49","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Checkboard","loc":"2:0-53","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./Checkboard","loc":"2:0-53","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Checkboard","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":7163,"sizes":{"javascript":7163},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","name":"./node_modules/react-color/es/components/common/EditableInput.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","index":223,"preOrderIndex":223,"index2":214,"postOrderIndex":214,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":19,"resolving":4,"restoring":0,"building":15,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./EditableInput","loc":"3:0-59","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./EditableInput","loc":"3:0-59","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["EditableInput","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-564"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":5796,"sizes":{"javascript":5796},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","name":"./node_modules/react-color/es/components/common/Hue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","index":224,"preOrderIndex":224,"index2":216,"postOrderIndex":216,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":4,"restoring":0,"building":25,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Hue","loc":"4:0-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./Hue","loc":"4:0-39","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Hue","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-564"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2160,"sizes":{"javascript":2160},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","name":"./node_modules/react-color/es/components/common/Raised.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","index":226,"preOrderIndex":226,"index2":313,"postOrderIndex":313,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":4,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Raised","loc":"5:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./Raised","loc":"5:0-45","moduleId":null,"resolvedModuleId":null}],"usedExports":[],"providedExports":["Raised","default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 85:0-90:2"],"depth":7},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1040,"sizes":{"javascript":1040},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","index":228,"preOrderIndex":228,"index2":245,"postOrderIndex":245,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","issuerName":"./node_modules/lodash-es/merge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","module":"./node_modules/lodash-es/merge.js","moduleName":"./node_modules/lodash-es/merge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","resolvedModule":"./node_modules/lodash-es/merge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_createAssigner.js","loc":"2:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","module":"./node_modules/lodash-es/merge.js","moduleName":"./node_modules/lodash-es/merge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","resolvedModule":"./node_modules/lodash-es/merge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_createAssigner.js","loc":"35:12-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":7},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1326,"sizes":{"javascript":1326},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","index":257,"preOrderIndex":257,"index2":311,"postOrderIndex":311,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","issuerName":"./node_modules/lodash-es/merge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","module":"./node_modules/lodash-es/merge.js","moduleName":"./node_modules/lodash-es/merge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","resolvedModule":"./node_modules/lodash-es/merge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseMerge.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","module":"./node_modules/lodash-es/merge.js","moduleName":"./node_modules/lodash-es/merge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","resolvedModule":"./node_modules/lodash-es/merge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseMerge.js","loc":"36:2-11","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6337,"sizes":{"javascript":6337},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","name":"./node_modules/react-color/es/components/common/Saturation.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","index":323,"preOrderIndex":323,"index2":322,"postOrderIndex":322,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":35,"resolving":4,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Saturation","loc":"6:0-53","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./Saturation","loc":"6:0-53","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Saturation","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-564"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":4077,"sizes":{"javascript":4077},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","index":332,"preOrderIndex":332,"index2":334,"postOrderIndex":334,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./ColorWrap","loc":"7:0-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./ColorWrap","loc":"7:0-51","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["ColorWrap","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2091,"sizes":{"javascript":2091},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","index":333,"preOrderIndex":333,"index2":333,"postOrderIndex":333,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","issuerName":"./node_modules/react-color/es/components/sketch/SketchFields.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"13:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"25:27-57","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"27:23-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"35:27-57","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"37:23-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"42:33-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"65:28-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"5:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"59:6-22","moduleId":null,"resolvedModuleId":null}],"usedExports":["isValidHex","simpleCheckForValidColor","toState"],"providedExports":["getContrastingColor","isValidHex","isvalidColorString","red","simpleCheckForValidColor","toState"],"optimizationBailout":["Statement (ExportNamedDeclaration) with side effects in source code at 68:0-73:2"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2045,"sizes":{"javascript":2045},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","name":"./node_modules/react-color/es/components/common/Swatch.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","index":344,"preOrderIndex":344,"index2":336,"postOrderIndex":336,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":5,"restoring":0,"building":34,"integration":0,"storing":1,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Swatch","loc":"8:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./Swatch","loc":"8:0-45","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Swatch","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":972,"sizes":{"javascript":972},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/checkboard.js","name":"./node_modules/react-color/es/helpers/checkboard.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/checkboard.js","index":221,"preOrderIndex":221,"index2":210,"postOrderIndex":210,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","issuerName":"./node_modules/react-color/es/components/common/Checkboard.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","name":"./node_modules/react-color/es/components/common/Checkboard.js","profile":{"total":14,"resolving":4,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":27,"resolving":18,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../helpers/checkboard","loc":"5:0-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/checkboard","loc":"22:29-43","moduleId":null,"resolvedModuleId":null}],"usedExports":["get"],"providedExports":["get","render"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-25"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1215,"sizes":{"javascript":1215},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/alpha.js","name":"./node_modules/react-color/es/helpers/alpha.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/alpha.js","index":222,"preOrderIndex":222,"index2":212,"postOrderIndex":212,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","issuerName":"./node_modules/react-color/es/components/common/Alpha.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","name":"./node_modules/react-color/es/components/common/Alpha.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":18,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../helpers/alpha","loc":"13:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/alpha","loc":"32:19-40","moduleId":null,"resolvedModuleId":null}],"usedExports":["calculateChange"],"providedExports":["calculateChange"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1263,"sizes":{"javascript":1263},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/hue.js","name":"./node_modules/react-color/es/helpers/hue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/hue.js","index":225,"preOrderIndex":225,"index2":215,"postOrderIndex":215,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","issuerName":"./node_modules/react-color/es/components/common/Hue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","name":"./node_modules/react-color/es/components/common/Hue.js","profile":{"total":29,"resolving":4,"restoring":0,"building":25,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../helpers/hue","loc":"11:0-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/hue","loc":"28:19-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["calculateChange"],"providedExports":["calculateChange"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":557,"sizes":{"javascript":557},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","index":229,"preOrderIndex":229,"index2":239,"postOrderIndex":239,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","issuerName":"./node_modules/lodash-es/_createAssigner.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","module":"./node_modules/lodash-es/_createAssigner.js","moduleName":"./node_modules/lodash-es/_createAssigner.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","resolvedModule":"./node_modules/lodash-es/_createAssigner.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseRest.js","loc":"1:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","module":"./node_modules/lodash-es/_createAssigner.js","moduleName":"./node_modules/lodash-es/_createAssigner.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","resolvedModule":"./node_modules/lodash-es/_createAssigner.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseRest.js","loc":"12:9-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":731,"sizes":{"javascript":731},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isObject.js","name":"./node_modules/lodash-es/isObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isObject.js","index":237,"preOrderIndex":237,"index2":219,"postOrderIndex":219,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":26,"resolving":5,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":5,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","module":"./node_modules/lodash-es/_baseCreate.js","moduleName":"./node_modules/lodash-es/_baseCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","resolvedModule":"./node_modules/lodash-es/_baseCreate.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","module":"./node_modules/lodash-es/_baseCreate.js","moduleName":"./node_modules/lodash-es/_baseCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","resolvedModule":"./node_modules/lodash-es/_baseCreate.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"17:9-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"3:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"40:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"19:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"5:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"26:8-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"11:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"77:16-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"4:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"17:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"82:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","module":"./node_modules/lodash-es/isFunction.js","moduleName":"./node_modules/lodash-es/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","resolvedModule":"./node_modules/lodash-es/isFunction.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"2:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","module":"./node_modules/lodash-es/isFunction.js","moduleName":"./node_modules/lodash-es/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","resolvedModule":"./node_modules/lodash-es/isFunction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"28:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","module":"./node_modules/lodash-es/throttle.js","moduleName":"./node_modules/lodash-es/throttle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","resolvedModule":"./node_modules/lodash-es/throttle.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"2:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","module":"./node_modules/lodash-es/throttle.js","moduleName":"./node_modules/lodash-es/throttle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","resolvedModule":"./node_modules/lodash-es/throttle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"58:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"2:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"50:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"52:12-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":875,"sizes":{"javascript":875},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","name":"./node_modules/lodash-es/_isIterateeCall.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","index":252,"preOrderIndex":252,"index2":244,"postOrderIndex":244,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","issuerName":"./node_modules/lodash-es/_createAssigner.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":7,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","module":"./node_modules/lodash-es/_createAssigner.js","moduleName":"./node_modules/lodash-es/_createAssigner.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","resolvedModule":"./node_modules/lodash-es/_createAssigner.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isIterateeCall.js","loc":"2:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","module":"./node_modules/lodash-es/_createAssigner.js","moduleName":"./node_modules/lodash-es/_createAssigner.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","resolvedModule":"./node_modules/lodash-es/_createAssigner.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isIterateeCall.js","loc":"22:17-31","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":591,"sizes":{"javascript":591},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","name":"./node_modules/lodash-es/_baseFor.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","index":258,"preOrderIndex":258,"index2":247,"postOrderIndex":247,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":26,"resolving":5,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":5,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","module":"./node_modules/lodash-es/_baseForOwn.js","moduleName":"./node_modules/lodash-es/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","resolvedModule":"./node_modules/lodash-es/_baseForOwn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseFor.js","loc":"1:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","module":"./node_modules/lodash-es/_baseForOwn.js","moduleName":"./node_modules/lodash-es/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","resolvedModule":"./node_modules/lodash-es/_baseForOwn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseFor.js","loc":"13:19-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseFor.js","loc":"3:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseFor.js","loc":"24:2-9","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 14:0-30"],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":732,"sizes":{"javascript":732},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","index":260,"preOrderIndex":260,"index2":276,"postOrderIndex":276,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Stack.js","loc":"1:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Stack.js","loc":"25:26-31","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 21:0-35"],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":3067,"sizes":{"javascript":3067},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","index":289,"preOrderIndex":289,"index2":310,"postOrderIndex":310,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseMergeDeep.js","loc":"4:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseMergeDeep.js","loc":"27:6-19","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":454,"sizes":{"javascript":454},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_safeGet.js","name":"./node_modules/lodash-es/_safeGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_safeGet.js","index":290,"preOrderIndex":290,"index2":277,"postOrderIndex":277,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":24,"resolving":5,"restoring":0,"building":19,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_safeGet.js","loc":"7:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_safeGet.js","loc":"31:21-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_safeGet.js","loc":"14:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_safeGet.js","loc":"33:17-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_safeGet.js","loc":"34:17-24","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":580,"sizes":{"javascript":580},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","index":291,"preOrderIndex":291,"index2":279,"postOrderIndex":279,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assignMergeValue.js","loc":"2:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assignMergeValue.js","loc":"37:6-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assignMergeValue.js","loc":"1:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assignMergeValue.js","loc":"38:4-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assignMergeValue.js","loc":"91:2-18","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":776,"sizes":{"javascript":776},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","index":315,"preOrderIndex":315,"index2":306,"postOrderIndex":306,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./keysIn.js","loc":"6:0-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./keysIn.js","loc":"39:5-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","module":"./node_modules/lodash-es/toPlainObject.js","moduleName":"./node_modules/lodash-es/toPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","resolvedModule":"./node_modules/lodash-es/toPlainObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./keysIn.js","loc":"2:0-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","module":"./node_modules/lodash-es/toPlainObject.js","moduleName":"./node_modules/lodash-es/toPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","resolvedModule":"./node_modules/lodash-es/toPlainObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./keysIn.js","loc":"29:27-33","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":931,"sizes":{"javascript":931},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/saturation.js","name":"./node_modules/react-color/es/helpers/saturation.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/saturation.js","index":324,"preOrderIndex":324,"index2":314,"postOrderIndex":314,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","issuerName":"./node_modules/react-color/es/components/common/Saturation.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","name":"./node_modules/react-color/es/components/common/Saturation.js","profile":{"total":35,"resolving":4,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":31,"resolving":18,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../helpers/saturation","loc":"12:0-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/saturation","loc":"23:89-115","moduleId":null,"resolvedModuleId":null}],"usedExports":["calculateChange"],"providedExports":["calculateChange"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":2707,"sizes":{"javascript":2707},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","name":"./node_modules/lodash-es/throttle.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","index":325,"preOrderIndex":325,"index2":321,"postOrderIndex":321,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","issuerName":"./node_modules/react-color/es/components/common/Saturation.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","name":"./node_modules/react-color/es/components/common/Saturation.js","profile":{"total":35,"resolving":4,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":36,"resolving":22,"restoring":0,"building":14,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":22,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"lodash-es/throttle","loc":"11:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash-es/throttle","loc":"37:21-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":6098,"sizes":{"javascript":6098},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","index":326,"preOrderIndex":326,"index2":320,"postOrderIndex":320,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","issuerName":"./node_modules/react-color/es/components/common/ColorWrap.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","module":"./node_modules/lodash-es/throttle.js","moduleName":"./node_modules/lodash-es/throttle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","resolvedModule":"./node_modules/lodash-es/throttle.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./debounce.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","module":"./node_modules/lodash-es/throttle.js","moduleName":"./node_modules/lodash-es/throttle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","resolvedModule":"./node_modules/lodash-es/throttle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./debounce.js","loc":"62:9-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"lodash-es/debounce","loc":"12:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash-es/debounce","loc":"44:23-31","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 9:0-10:25"],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1353,"sizes":{"javascript":1353},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","index":335,"preOrderIndex":335,"index2":332,"postOrderIndex":332,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","issuerName":"./node_modules/lodash-es/each.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","module":"./node_modules/lodash-es/each.js","moduleName":"./node_modules/lodash-es/each.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","resolvedModule":"./node_modules/lodash-es/each.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./forEach.js","loc":"1:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","module":"./node_modules/lodash-es/each.js","moduleName":"./node_modules/lodash-es/each.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","resolvedModule":"./node_modules/lodash-es/each.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./forEach.js","loc":"1:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","module":"./node_modules/react-color/es/helpers/color.js","moduleName":"./node_modules/react-color/es/helpers/color.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"lodash-es/each","loc":"8:2-6","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3054,"sizes":{"javascript":3054},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","name":"./node_modules/react-color/es/helpers/interaction.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","index":345,"preOrderIndex":345,"index2":335,"postOrderIndex":335,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","issuerName":"./node_modules/react-color/es/components/common/Swatch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","name":"./node_modules/react-color/es/components/common/Swatch.js","profile":{"total":40,"resolving":5,"restoring":0,"building":34,"integration":0,"storing":1,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":8,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../helpers/interaction","loc":"5:0-56","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/interaction","loc":"70:15-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleFocus"],"providedExports":["handleFocus"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":390,"sizes":{"javascript":390},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","name":"./node_modules/lodash-es/_setToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","index":230,"preOrderIndex":230,"index2":236,"postOrderIndex":236,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","issuerName":"./node_modules/lodash-es/_baseRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":52,"resolving":13,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_setToString.js","loc":"3:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_setToString.js","loc":"14:9-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 12:0-44"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":991,"sizes":{"javascript":991},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","name":"./node_modules/lodash-es/isFunction.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","index":242,"preOrderIndex":242,"index2":228,"postOrderIndex":228,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isFunction.js","loc":"1:0-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isFunction.js","loc":"43:16-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isFunction.js","loc":"10:0-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isFunction.js","loc":"77:38-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","module":"./node_modules/lodash-es/isArrayLike.js","moduleName":"./node_modules/lodash-es/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","resolvedModule":"./node_modules/lodash-es/isArrayLike.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isFunction.js","loc":"1:0-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","module":"./node_modules/lodash-es/isArrayLike.js","moduleName":"./node_modules/lodash-es/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","resolvedModule":"./node_modules/lodash-es/isArrayLike.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isFunction.js","loc":"30:53-63","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":368,"sizes":{"javascript":368},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/identity.js","name":"./node_modules/lodash-es/identity.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/identity.js","index":248,"preOrderIndex":248,"index2":233,"postOrderIndex":233,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","issuerName":"./node_modules/lodash-es/_baseRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":48,"resolving":13,"restoring":0,"building":35,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./identity.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./identity.js","loc":"14:43-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./identity.js","loc":"3:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./identity.js","loc":"13:40-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","module":"./node_modules/lodash-es/_castFunction.js","moduleName":"./node_modules/lodash-es/_castFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","resolvedModule":"./node_modules/lodash-es/_castFunction.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./identity.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","module":"./node_modules/lodash-es/_castFunction.js","moduleName":"./node_modules/lodash-es/_castFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","resolvedModule":"./node_modules/lodash-es/_castFunction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./identity.js","loc":"11:46-54","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1094,"sizes":{"javascript":1094},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","name":"./node_modules/lodash-es/_overRest.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","index":250,"preOrderIndex":250,"index2":238,"postOrderIndex":238,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","issuerName":"./node_modules/lodash-es/_baseRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":48,"resolving":13,"restoring":0,"building":35,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_overRest.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_overRest.js","loc":"14:21-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-25"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":828,"sizes":{"javascript":828},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","name":"./node_modules/lodash-es/isArrayLike.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","index":253,"preOrderIndex":253,"index2":241,"postOrderIndex":241,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","issuerName":"./node_modules/lodash-es/keysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":47,"resolving":13,"restoring":0,"building":34,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","module":"./node_modules/lodash-es/_createBaseEach.js","moduleName":"./node_modules/lodash-es/_createBaseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","resolvedModule":"./node_modules/lodash-es/_createBaseEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLike.js","loc":"1:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","module":"./node_modules/lodash-es/_createBaseEach.js","moduleName":"./node_modules/lodash-es/_createBaseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","resolvedModule":"./node_modules/lodash-es/_createBaseEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLike.js","loc":"16:9-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLike.js","loc":"2:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLike.js","loc":"22:11-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","module":"./node_modules/lodash-es/isArrayLikeObject.js","moduleName":"./node_modules/lodash-es/isArrayLikeObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","resolvedModule":"./node_modules/lodash-es/isArrayLikeObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLike.js","loc":"1:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","module":"./node_modules/lodash-es/isArrayLikeObject.js","moduleName":"./node_modules/lodash-es/isArrayLikeObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","resolvedModule":"./node_modules/lodash-es/isArrayLikeObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLike.js","loc":"30:32-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLike.js","loc":"3:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLike.js","loc":"34:9-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLike.js","loc":"3:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLike.js","loc":"29:9-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":757,"sizes":{"javascript":757},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIndex.js","name":"./node_modules/lodash-es/_isIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIndex.js","index":255,"preOrderIndex":255,"index2":242,"postOrderIndex":242,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","issuerName":"./node_modules/lodash-es/_isIterateeCall.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","name":"./node_modules/lodash-es/_isIterateeCall.js","profile":{"total":30,"resolving":7,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":53,"resolving":13,"restoring":0,"building":40,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":13,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isIndex.js","loc":"5:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isIndex.js","loc":"41:11-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isIndex.js","loc":"3:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isIndex.js","loc":"22:34-41","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":797,"sizes":{"javascript":797},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/eq.js","name":"./node_modules/lodash-es/eq.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/eq.js","index":256,"preOrderIndex":256,"index2":243,"postOrderIndex":243,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","issuerName":"./node_modules/lodash-es/_assignMergeValue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":17,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","module":"./node_modules/lodash-es/_assignMergeValue.js","moduleName":"./node_modules/lodash-es/_assignMergeValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","resolvedModule":"./node_modules/lodash-es/_assignMergeValue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./eq.js","loc":"2:0-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","module":"./node_modules/lodash-es/_assignMergeValue.js","moduleName":"./node_modules/lodash-es/_assignMergeValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","resolvedModule":"./node_modules/lodash-es/_assignMergeValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./eq.js","loc":"14:31-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","module":"./node_modules/lodash-es/_assignValue.js","moduleName":"./node_modules/lodash-es/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","resolvedModule":"./node_modules/lodash-es/_assignValue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./eq.js","loc":"2:0-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","module":"./node_modules/lodash-es/_assignValue.js","moduleName":"./node_modules/lodash-es/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","resolvedModule":"./node_modules/lodash-es/_assignValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./eq.js","loc":"22:44-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","module":"./node_modules/lodash-es/_assocIndexOf.js","moduleName":"./node_modules/lodash-es/_assocIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","resolvedModule":"./node_modules/lodash-es/_assocIndexOf.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./eq.js","loc":"1:0-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","module":"./node_modules/lodash-es/_assocIndexOf.js","moduleName":"./node_modules/lodash-es/_assocIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","resolvedModule":"./node_modules/lodash-es/_assocIndexOf.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./eq.js","loc":"14:8-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./eq.js","loc":"1:0-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./eq.js","loc":"25:11-13","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":646,"sizes":{"javascript":646},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseFor.js","name":"./node_modules/lodash-es/_createBaseFor.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseFor.js","index":259,"preOrderIndex":259,"index2":246,"postOrderIndex":246,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","issuerName":"./node_modules/lodash-es/_baseFor.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","name":"./node_modules/lodash-es/_baseFor.js","profile":{"total":26,"resolving":5,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":5,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":48,"resolving":20,"restoring":0,"building":28,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","module":"./node_modules/lodash-es/_baseFor.js","moduleName":"./node_modules/lodash-es/_baseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","resolvedModule":"./node_modules/lodash-es/_baseFor.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_createBaseFor.js","loc":"1:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","module":"./node_modules/lodash-es/_baseFor.js","moduleName":"./node_modules/lodash-es/_baseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","resolvedModule":"./node_modules/lodash-es/_baseFor.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_createBaseFor.js","loc":"14:14-27","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":867,"sizes":{"javascript":867},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","index":261,"preOrderIndex":261,"index2":254,"postOrderIndex":254,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_ListCache.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_ListCache.js","loc":"16:33-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_ListCache.js","loc":"2:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_ListCache.js","loc":"16:23-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","module":"./node_modules/lodash-es/_stackClear.js","moduleName":"./node_modules/lodash-es/_stackClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","resolvedModule":"./node_modules/lodash-es/_stackClear.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_ListCache.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","module":"./node_modules/lodash-es/_stackClear.js","moduleName":"./node_modules/lodash-es/_stackClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","resolvedModule":"./node_modules/lodash-es/_stackClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_ListCache.js","loc":"11:22-31","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_ListCache.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_ListCache.js","loc":"20:22-31","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 26:0-43"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":252,"sizes":{"javascript":252},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","name":"./node_modules/lodash-es/_stackClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","index":268,"preOrderIndex":268,"index2":255,"postOrderIndex":255,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_stackClear.js","loc":"2:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_stackClear.js","loc":"21:24-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":403,"sizes":{"javascript":403},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackDelete.js","name":"./node_modules/lodash-es/_stackDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackDelete.js","index":269,"preOrderIndex":269,"index2":256,"postOrderIndex":256,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":21,"resolving":12,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_stackDelete.js","loc":"3:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_stackDelete.js","loc":"22:28-39","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":269,"sizes":{"javascript":269},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackGet.js","name":"./node_modules/lodash-es/_stackGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackGet.js","index":270,"preOrderIndex":270,"index2":257,"postOrderIndex":257,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":22,"resolving":12,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_stackGet.js","loc":"4:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_stackGet.js","loc":"23:22-30","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":321,"sizes":{"javascript":321},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackHas.js","name":"./node_modules/lodash-es/_stackHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackHas.js","index":271,"preOrderIndex":271,"index2":258,"postOrderIndex":258,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":26,"resolving":17,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_stackHas.js","loc":"5:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_stackHas.js","loc":"24:22-30","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":851,"sizes":{"javascript":851},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","index":272,"preOrderIndex":272,"index2":275,"postOrderIndex":275,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_stackSet.js","loc":"6:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_stackSet.js","loc":"25:22-30","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":623,"sizes":{"javascript":623},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","index":292,"preOrderIndex":292,"index2":278,"postOrderIndex":278,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","issuerName":"./node_modules/lodash-es/_assignMergeValue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","module":"./node_modules/lodash-es/_assignMergeValue.js","moduleName":"./node_modules/lodash-es/_assignMergeValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","resolvedModule":"./node_modules/lodash-es/_assignMergeValue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"1:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","module":"./node_modules/lodash-es/_assignMergeValue.js","moduleName":"./node_modules/lodash-es/_assignMergeValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","resolvedModule":"./node_modules/lodash-es/_assignMergeValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"16:4-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","module":"./node_modules/lodash-es/_assignValue.js","moduleName":"./node_modules/lodash-es/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","resolvedModule":"./node_modules/lodash-es/_assignValue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"1:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","module":"./node_modules/lodash-es/_assignValue.js","moduleName":"./node_modules/lodash-es/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","resolvedModule":"./node_modules/lodash-es/_assignValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"24:4-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","module":"./node_modules/lodash-es/_copyObject.js","moduleName":"./node_modules/lodash-es/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","resolvedModule":"./node_modules/lodash-es/_copyObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"2:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","module":"./node_modules/lodash-es/_copyObject.js","moduleName":"./node_modules/lodash-es/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","resolvedModule":"./node_modules/lodash-es/_copyObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"32:6-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":486,"sizes":{"javascript":486},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArray.js","name":"./node_modules/lodash-es/isArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArray.js","index":293,"preOrderIndex":293,"index2":280,"postOrderIndex":280,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":13,"restoring":0,"building":30,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":13,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArray.js","loc":"3:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArray.js","loc":"23:14-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArray.js","loc":"7:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArray.js","loc":"48:16-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArray.js","loc":"54:10-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArray.js","loc":"4:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArray.js","loc":"37:13-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 24:0-28"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1112,"sizes":{"javascript":1112},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","name":"./node_modules/lodash-es/isBuffer.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","index":294,"preOrderIndex":294,"index2":282,"postOrderIndex":282,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":13,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isBuffer.js","loc":"4:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isBuffer.js","loc":"25:35-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isBuffer.js","loc":"9:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isBuffer.js","loc":"49:27-35","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 5:0-88"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":693,"sizes":{"javascript":693},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","name":"./node_modules/lodash-es/isTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","index":296,"preOrderIndex":296,"index2":287,"postOrderIndex":287,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":45,"resolving":13,"restoring":0,"building":32,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":13,"dependencies":3},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isTypedArray.js","loc":"6:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isTypedArray.js","loc":"26:46-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isTypedArray.js","loc":"13:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isTypedArray.js","loc":"50:39-51","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 6:0-57"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":740,"sizes":{"javascript":740},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","name":"./node_modules/lodash-es/isArrayLikeObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","index":301,"preOrderIndex":301,"index2":288,"postOrderIndex":288,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":13,"restoring":0,"building":30,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLikeObject.js","loc":"8:0-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLikeObject.js","loc":"57:15-32","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":452,"sizes":{"javascript":452},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyArray.js","name":"./node_modules/lodash-es/_copyArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyArray.js","index":302,"preOrderIndex":302,"index2":289,"postOrderIndex":289,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_copyArray.js","loc":"4:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_copyArray.js","loc":"58:19-28","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1054,"sizes":{"javascript":1054},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","name":"./node_modules/lodash-es/_cloneBuffer.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","index":303,"preOrderIndex":303,"index2":290,"postOrderIndex":290,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":12,"restoring":0,"building":28,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_cloneBuffer.js","loc":"2:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_cloneBuffer.js","loc":"62:19-30","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-88"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":525,"sizes":{"javascript":525},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","name":"./node_modules/lodash-es/_cloneTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","index":304,"preOrderIndex":304,"index2":293,"postOrderIndex":293,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":12,"restoring":0,"building":28,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_cloneTypedArray.js","loc":"3:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_cloneTypedArray.js","loc":"66:19-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1648,"sizes":{"javascript":1648},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","name":"./node_modules/lodash-es/isPlainObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","index":307,"preOrderIndex":307,"index2":296,"postOrderIndex":296,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":45,"resolving":13,"restoring":0,"building":32,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isPlainObject.js","loc":"12:0-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isPlainObject.js","loc":"72:13-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 9:0-10:35"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1024,"sizes":{"javascript":1024},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","name":"./node_modules/lodash-es/isArguments.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","index":310,"preOrderIndex":310,"index2":298,"postOrderIndex":298,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":42,"resolving":12,"restoring":0,"building":30,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":12,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArguments.js","loc":"2:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArguments.js","loc":"24:24-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArguments.js","loc":"6:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArguments.js","loc":"72:40-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArguments.js","loc":"74:10-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 5:0-35"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":742,"sizes":{"javascript":742},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","name":"./node_modules/lodash-es/toPlainObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","index":312,"preOrderIndex":312,"index2":307,"postOrderIndex":307,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./toPlainObject.js","loc":"15:0-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./toPlainObject.js","loc":"75:19-32","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1776,"sizes":{"javascript":1776},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","name":"./node_modules/lodash-es/_arrayLikeKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","index":316,"preOrderIndex":316,"index2":302,"postOrderIndex":302,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","issuerName":"./node_modules/lodash-es/keysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":46,"resolving":13,"restoring":0,"building":33,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_arrayLikeKeys.js","loc":"1:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_arrayLikeKeys.js","loc":"34:31-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_arrayLikeKeys.js","loc":"1:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_arrayLikeKeys.js","loc":"29:31-44","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 9:0-35"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":868,"sizes":{"javascript":868},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","name":"./node_modules/lodash-es/_baseKeysIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","index":318,"preOrderIndex":318,"index2":305,"postOrderIndex":305,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","issuerName":"./node_modules/lodash-es/keysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":47,"resolving":13,"restoring":0,"building":34,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseKeysIn.js","loc":"2:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseKeysIn.js","loc":"29:61-71","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 6:0-35"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":484,"sizes":{"javascript":484},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","name":"./node_modules/lodash-es/_initCloneObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","index":321,"preOrderIndex":321,"index2":309,"postOrderIndex":309,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_initCloneObject.js","loc":"5:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_initCloneObject.js","loc":"78:19-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1517,"sizes":{"javascript":1517},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","name":"./node_modules/lodash-es/toNumber.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","index":327,"preOrderIndex":327,"index2":318,"postOrderIndex":318,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","issuerName":"./node_modules/lodash-es/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":33,"resolving":9,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./toNumber.js","loc":"3:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./toNumber.js","loc":"81:9-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./toNumber.js","loc":"85:33-41","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 18:0-28"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":518,"sizes":{"javascript":518},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","name":"./node_modules/lodash-es/now.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","index":331,"preOrderIndex":331,"index2":319,"postOrderIndex":319,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","issuerName":"./node_modules/lodash-es/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":34,"resolving":10,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./now.js","loc":"2:0-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./now.js","loc":"130:15-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./now.js","loc":"159:57-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./now.js","loc":"163:15-18","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":535,"sizes":{"javascript":535},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayEach.js","name":"./node_modules/lodash-es/_arrayEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayEach.js","index":336,"preOrderIndex":336,"index2":324,"postOrderIndex":324,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","issuerName":"./node_modules/lodash-es/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":44,"resolving":6,"restoring":0,"building":38,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_arrayEach.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_arrayEach.js","loc":"37:35-44","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":453,"sizes":{"javascript":453},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","index":337,"preOrderIndex":337,"index2":330,"postOrderIndex":330,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","issuerName":"./node_modules/lodash-es/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseEach.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseEach.js","loc":"37:47-55","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 12:0-42"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":324,"sizes":{"javascript":324},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","name":"./node_modules/lodash-es/_castFunction.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","index":343,"preOrderIndex":343,"index2":331,"postOrderIndex":331,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","issuerName":"./node_modules/lodash-es/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_castFunction.js","loc":"3:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_castFunction.js","loc":"38:26-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":939,"sizes":{"javascript":939},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_shortOut.js","name":"./node_modules/lodash-es/_shortOut.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_shortOut.js","index":231,"preOrderIndex":231,"index2":217,"postOrderIndex":217,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","issuerName":"./node_modules/lodash-es/_setToString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","name":"./node_modules/lodash-es/_setToString.js","profile":{"total":52,"resolving":13,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":6,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","module":"./node_modules/lodash-es/_setToString.js","moduleName":"./node_modules/lodash-es/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","resolvedModule":"./node_modules/lodash-es/_setToString.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_shortOut.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","module":"./node_modules/lodash-es/_setToString.js","moduleName":"./node_modules/lodash-es/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","resolvedModule":"./node_modules/lodash-es/_setToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_shortOut.js","loc":"12:18-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 6:0-25"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":639,"sizes":{"javascript":639},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","name":"./node_modules/lodash-es/_baseSetToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","index":232,"preOrderIndex":232,"index2":235,"postOrderIndex":235,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","issuerName":"./node_modules/lodash-es/_setToString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","name":"./node_modules/lodash-es/_setToString.js","profile":{"total":52,"resolving":13,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":6,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","module":"./node_modules/lodash-es/_setToString.js","moduleName":"./node_modules/lodash-es/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","resolvedModule":"./node_modules/lodash-es/_setToString.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseSetToString.js","loc":"1:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","module":"./node_modules/lodash-es/_setToString.js","moduleName":"./node_modules/lodash-es/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","resolvedModule":"./node_modules/lodash-es/_setToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseSetToString.js","loc":"12:27-42","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 13:0-20:2"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":231,"sizes":{"javascript":231},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","index":233,"preOrderIndex":233,"index2":232,"postOrderIndex":232,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","issuerName":"./node_modules/lodash-es/_baseAssignValue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","module":"./node_modules/lodash-es/_baseAssignValue.js","moduleName":"./node_modules/lodash-es/_baseAssignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","resolvedModule":"./node_modules/lodash-es/_baseAssignValue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_defineProperty.js","loc":"1:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","module":"./node_modules/lodash-es/_baseAssignValue.js","moduleName":"./node_modules/lodash-es/_baseAssignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","resolvedModule":"./node_modules/lodash-es/_baseAssignValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_defineProperty.js","loc":"13:28-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","module":"./node_modules/lodash-es/_baseAssignValue.js","moduleName":"./node_modules/lodash-es/_baseAssignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","resolvedModule":"./node_modules/lodash-es/_baseAssignValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_defineProperty.js","loc":"14:4-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_defineProperty.js","loc":"2:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_defineProperty.js","loc":"13:23-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_defineProperty.js","loc":"14:9-23","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 3:0-9:5"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":298,"sizes":{"javascript":298},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","name":"./node_modules/lodash-es/_root.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","index":240,"preOrderIndex":240,"index2":221,"postOrderIndex":221,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","issuerName":"./node_modules/lodash-es/now.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","name":"./node_modules/lodash-es/now.js","profile":{"total":34,"resolving":10,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","module":"./node_modules/lodash-es/_Map.js","moduleName":"./node_modules/lodash-es/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","resolvedModule":"./node_modules/lodash-es/_Map.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"2:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","module":"./node_modules/lodash-es/_Map.js","moduleName":"./node_modules/lodash-es/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","resolvedModule":"./node_modules/lodash-es/_Map.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"5:20-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","module":"./node_modules/lodash-es/_Symbol.js","moduleName":"./node_modules/lodash-es/_Symbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","resolvedModule":"./node_modules/lodash-es/_Symbol.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","module":"./node_modules/lodash-es/_Symbol.js","moduleName":"./node_modules/lodash-es/_Symbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","resolvedModule":"./node_modules/lodash-es/_Symbol.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"4:13-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","module":"./node_modules/lodash-es/_Uint8Array.js","moduleName":"./node_modules/lodash-es/_Uint8Array.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","resolvedModule":"./node_modules/lodash-es/_Uint8Array.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","module":"./node_modules/lodash-es/_Uint8Array.js","moduleName":"./node_modules/lodash-es/_Uint8Array.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","resolvedModule":"./node_modules/lodash-es/_Uint8Array.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"4:17-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","module":"./node_modules/lodash-es/_cloneBuffer.js","moduleName":"./node_modules/lodash-es/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","resolvedModule":"./node_modules/lodash-es/_cloneBuffer.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","module":"./node_modules/lodash-es/_cloneBuffer.js","moduleName":"./node_modules/lodash-es/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","resolvedModule":"./node_modules/lodash-es/_cloneBuffer.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"13:29-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","module":"./node_modules/lodash-es/_coreJsData.js","moduleName":"./node_modules/lodash-es/_coreJsData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","resolvedModule":"./node_modules/lodash-es/_coreJsData.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","module":"./node_modules/lodash-es/_coreJsData.js","moduleName":"./node_modules/lodash-es/_coreJsData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","resolvedModule":"./node_modules/lodash-es/_coreJsData.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"4:17-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","module":"./node_modules/lodash-es/isBuffer.js","moduleName":"./node_modules/lodash-es/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","resolvedModule":"./node_modules/lodash-es/isBuffer.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","module":"./node_modules/lodash-es/isBuffer.js","moduleName":"./node_modules/lodash-es/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","resolvedModule":"./node_modules/lodash-es/isBuffer.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"14:29-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","module":"./node_modules/lodash-es/now.js","moduleName":"./node_modules/lodash-es/now.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","resolvedModule":"./node_modules/lodash-es/now.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","module":"./node_modules/lodash-es/now.js","moduleName":"./node_modules/lodash-es/now.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","resolvedModule":"./node_modules/lodash-es/now.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"20:9-22","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-81"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":790,"sizes":{"javascript":790},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","name":"./node_modules/lodash-es/_baseGetTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","index":243,"preOrderIndex":243,"index2":227,"postOrderIndex":227,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","issuerName":"./node_modules/lodash-es/isFunction.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","name":"./node_modules/lodash-es/isFunction.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":22,"resolving":10,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","module":"./node_modules/lodash-es/_baseIsArguments.js","moduleName":"./node_modules/lodash-es/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","resolvedModule":"./node_modules/lodash-es/_baseIsArguments.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseGetTag.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","module":"./node_modules/lodash-es/_baseIsArguments.js","moduleName":"./node_modules/lodash-es/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","resolvedModule":"./node_modules/lodash-es/_baseIsArguments.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseGetTag.js","loc":"15:32-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseGetTag.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseGetTag.js","loc":"57:47-57","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","module":"./node_modules/lodash-es/isFunction.js","moduleName":"./node_modules/lodash-es/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","resolvedModule":"./node_modules/lodash-es/isFunction.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseGetTag.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","module":"./node_modules/lodash-es/isFunction.js","moduleName":"./node_modules/lodash-es/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","resolvedModule":"./node_modules/lodash-es/isFunction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseGetTag.js","loc":"33:12-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseGetTag.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseGetTag.js","loc":"50:30-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","module":"./node_modules/lodash-es/isSymbol.js","moduleName":"./node_modules/lodash-es/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","resolvedModule":"./node_modules/lodash-es/isSymbol.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseGetTag.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","module":"./node_modules/lodash-es/isSymbol.js","moduleName":"./node_modules/lodash-es/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","resolvedModule":"./node_modules/lodash-es/isSymbol.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseGetTag.js","loc":"26:28-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 10:0-61"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":712,"sizes":{"javascript":712},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_apply.js","name":"./node_modules/lodash-es/_apply.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_apply.js","index":251,"preOrderIndex":251,"index2":237,"postOrderIndex":237,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","issuerName":"./node_modules/lodash-es/_overRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","name":"./node_modules/lodash-es/_overRest.js","profile":{"total":48,"resolving":13,"restoring":0,"building":35,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":33,"resolving":9,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","module":"./node_modules/lodash-es/_overRest.js","moduleName":"./node_modules/lodash-es/_overRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","resolvedModule":"./node_modules/lodash-es/_overRest.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_apply.js","loc":"1:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","module":"./node_modules/lodash-es/_overRest.js","moduleName":"./node_modules/lodash-es/_overRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","resolvedModule":"./node_modules/lodash-es/_overRest.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_apply.js","loc":"32:11-16","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":800,"sizes":{"javascript":800},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isLength.js","name":"./node_modules/lodash-es/isLength.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isLength.js","index":254,"preOrderIndex":254,"index2":240,"postOrderIndex":240,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","issuerName":"./node_modules/lodash-es/isArrayLike.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","name":"./node_modules/lodash-es/isArrayLike.js","profile":{"total":47,"resolving":13,"restoring":0,"building":34,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":10,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isLength.js","loc":"2:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isLength.js","loc":"57:4-12","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","module":"./node_modules/lodash-es/isArrayLike.js","moduleName":"./node_modules/lodash-es/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","resolvedModule":"./node_modules/lodash-es/isArrayLike.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isLength.js","loc":"2:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","module":"./node_modules/lodash-es/isArrayLike.js","moduleName":"./node_modules/lodash-es/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","resolvedModule":"./node_modules/lodash-es/isArrayLike.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isLength.js","loc":"30:26-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":216,"sizes":{"javascript":216},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheClear.js","name":"./node_modules/lodash-es/_listCacheClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheClear.js","index":262,"preOrderIndex":262,"index2":248,"postOrderIndex":248,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","issuerName":"./node_modules/lodash-es/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":33,"restoring":0,"building":7,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":33,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_listCacheClear.js","loc":"1:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_listCacheClear.js","loc":"26:28-42","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":773,"sizes":{"javascript":773},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","name":"./node_modules/lodash-es/_listCacheDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","index":263,"preOrderIndex":263,"index2":250,"postOrderIndex":250,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","issuerName":"./node_modules/lodash-es/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":33,"restoring":0,"building":7,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":33,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_listCacheDelete.js","loc":"2:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_listCacheDelete.js","loc":"27:32-47","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-33"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":418,"sizes":{"javascript":418},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","name":"./node_modules/lodash-es/_listCacheGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","index":265,"preOrderIndex":265,"index2":251,"postOrderIndex":251,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","issuerName":"./node_modules/lodash-es/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":38,"resolving":31,"restoring":0,"building":7,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":31,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_listCacheGet.js","loc":"3:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_listCacheGet.js","loc":"28:26-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":401,"sizes":{"javascript":401},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","name":"./node_modules/lodash-es/_listCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","index":266,"preOrderIndex":266,"index2":252,"postOrderIndex":252,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","issuerName":"./node_modules/lodash-es/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":39,"resolving":31,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":31,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_listCacheHas.js","loc":"4:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_listCacheHas.js","loc":"29:26-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":551,"sizes":{"javascript":551},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","name":"./node_modules/lodash-es/_listCacheSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","index":267,"preOrderIndex":267,"index2":253,"postOrderIndex":253,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","issuerName":"./node_modules/lodash-es/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":39,"resolving":31,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":31,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_listCacheSet.js","loc":"5:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_listCacheSet.js","loc":"30:26-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":193,"sizes":{"javascript":193},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","name":"./node_modules/lodash-es/_Map.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","index":273,"preOrderIndex":273,"index2":259,"postOrderIndex":259,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","issuerName":"./node_modules/lodash-es/_stackSet.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":32,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Map.js","loc":"3:0-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Map.js","loc":"16:16-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Map.js","loc":"2:0-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Map.js","loc":"22:9-12","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 5:0-33"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":867,"sizes":{"javascript":867},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","index":274,"preOrderIndex":274,"index2":274,"postOrderIndex":274,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","issuerName":"./node_modules/lodash-es/_stackSet.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_MapCache.js","loc":"3:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_MapCache.js","loc":"27:31-39","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 26:0-41"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":278,"sizes":{"javascript":278},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/stubFalse.js","name":"./node_modules/lodash-es/stubFalse.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/stubFalse.js","index":295,"preOrderIndex":295,"index2":281,"postOrderIndex":281,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","issuerName":"./node_modules/lodash-es/isBuffer.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","name":"./node_modules/lodash-es/isBuffer.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":13,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":25,"resolving":10,"restoring":0,"building":15,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","module":"./node_modules/lodash-es/isBuffer.js","moduleName":"./node_modules/lodash-es/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","resolvedModule":"./node_modules/lodash-es/isBuffer.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./stubFalse.js","loc":"2:0-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","module":"./node_modules/lodash-es/isBuffer.js","moduleName":"./node_modules/lodash-es/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","resolvedModule":"./node_modules/lodash-es/isBuffer.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./stubFalse.js","loc":"36:33-42","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":993,"sizes":{"javascript":993},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","name":"./node_modules/lodash-es/_nodeUtil.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","index":297,"preOrderIndex":297,"index2":283,"postOrderIndex":283,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","issuerName":"./node_modules/lodash-es/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","name":"./node_modules/lodash-es/isTypedArray.js","profile":{"total":45,"resolving":13,"restoring":0,"building":32,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":13,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":10,"restoring":0,"building":19,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nodeUtil.js","loc":"3:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nodeUtil.js","loc":"6:23-31","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nodeUtil.js","loc":"6:35-56","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-88"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":330,"sizes":{"javascript":330},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseUnary.js","name":"./node_modules/lodash-es/_baseUnary.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseUnary.js","index":298,"preOrderIndex":298,"index2":284,"postOrderIndex":284,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","issuerName":"./node_modules/lodash-es/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","name":"./node_modules/lodash-es/isTypedArray.js","profile":{"total":45,"resolving":13,"restoring":0,"building":32,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":13,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":24,"resolving":10,"restoring":0,"building":14,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseUnary.js","loc":"2:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseUnary.js","loc":"25:38-47","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":2220,"sizes":{"javascript":2220},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","name":"./node_modules/lodash-es/_baseIsTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","index":299,"preOrderIndex":299,"index2":286,"postOrderIndex":286,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","issuerName":"./node_modules/lodash-es/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","name":"./node_modules/lodash-es/isTypedArray.js","profile":{"total":45,"resolving":13,"restoring":0,"building":32,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":13,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":25,"resolving":10,"restoring":0,"building":15,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseIsTypedArray.js","loc":"1:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseIsTypedArray.js","loc":"25:68-84","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 33:0-24"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":612,"sizes":{"javascript":612},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isObjectLike.js","name":"./node_modules/lodash-es/isObjectLike.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isObjectLike.js","index":300,"preOrderIndex":300,"index2":285,"postOrderIndex":285,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","issuerName":"./node_modules/lodash-es/isArrayLikeObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","name":"./node_modules/lodash-es/isArrayLikeObject.js","profile":{"total":43,"resolving":13,"restoring":0,"building":30,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":10,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","module":"./node_modules/lodash-es/_baseIsArguments.js","moduleName":"./node_modules/lodash-es/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","resolvedModule":"./node_modules/lodash-es/_baseIsArguments.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"2:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","module":"./node_modules/lodash-es/_baseIsArguments.js","moduleName":"./node_modules/lodash-es/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","resolvedModule":"./node_modules/lodash-es/_baseIsArguments.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"15:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"3:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"56:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","module":"./node_modules/lodash-es/isArguments.js","moduleName":"./node_modules/lodash-es/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","resolvedModule":"./node_modules/lodash-es/isArguments.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"2:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","module":"./node_modules/lodash-es/isArguments.js","moduleName":"./node_modules/lodash-es/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","resolvedModule":"./node_modules/lodash-es/isArguments.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"32:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","module":"./node_modules/lodash-es/isArrayLikeObject.js","moduleName":"./node_modules/lodash-es/isArrayLikeObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","resolvedModule":"./node_modules/lodash-es/isArrayLikeObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"2:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","module":"./node_modules/lodash-es/isArrayLikeObject.js","moduleName":"./node_modules/lodash-es/isArrayLikeObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","resolvedModule":"./node_modules/lodash-es/isArrayLikeObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"30:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"3:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"50:7-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","module":"./node_modules/lodash-es/isSymbol.js","moduleName":"./node_modules/lodash-es/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","resolvedModule":"./node_modules/lodash-es/isSymbol.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"2:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","module":"./node_modules/lodash-es/isSymbol.js","moduleName":"./node_modules/lodash-es/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","resolvedModule":"./node_modules/lodash-es/isSymbol.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"26:5-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":447,"sizes":{"javascript":447},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","name":"./node_modules/lodash-es/_cloneArrayBuffer.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","index":305,"preOrderIndex":305,"index2":292,"postOrderIndex":292,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","issuerName":"./node_modules/lodash-es/_cloneTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","name":"./node_modules/lodash-es/_cloneTypedArray.js","profile":{"total":40,"resolving":12,"restoring":0,"building":28,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":23,"resolving":9,"restoring":0,"building":14,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","module":"./node_modules/lodash-es/_cloneTypedArray.js","moduleName":"./node_modules/lodash-es/_cloneTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","resolvedModule":"./node_modules/lodash-es/_cloneTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_cloneArrayBuffer.js","loc":"1:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","module":"./node_modules/lodash-es/_cloneTypedArray.js","moduleName":"./node_modules/lodash-es/_cloneTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","resolvedModule":"./node_modules/lodash-es/_cloneTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_cloneArrayBuffer.js","loc":"12:24-40","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":161,"sizes":{"javascript":161},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","name":"./node_modules/lodash-es/_getPrototype.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","index":308,"preOrderIndex":308,"index2":295,"postOrderIndex":295,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","issuerName":"./node_modules/lodash-es/_initCloneObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","name":"./node_modules/lodash-es/_initCloneObject.js","profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":9,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":9,"dependencies":9},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getPrototype.js","loc":"2:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getPrototype.js","loc":"14:17-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getPrototype.js","loc":"2:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getPrototype.js","loc":"53:14-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-58"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":486,"sizes":{"javascript":486},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","name":"./node_modules/lodash-es/_baseIsArguments.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","index":311,"preOrderIndex":311,"index2":297,"postOrderIndex":297,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","issuerName":"./node_modules/lodash-es/isArguments.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","name":"./node_modules/lodash-es/isArguments.js","profile":{"total":42,"resolving":12,"restoring":0,"building":30,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":12,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":10,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","module":"./node_modules/lodash-es/isArguments.js","moduleName":"./node_modules/lodash-es/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","resolvedModule":"./node_modules/lodash-es/isArguments.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseIsArguments.js","loc":"1:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","module":"./node_modules/lodash-es/isArguments.js","moduleName":"./node_modules/lodash-es/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","resolvedModule":"./node_modules/lodash-es/isArguments.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseIsArguments.js","loc":"31:18-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","module":"./node_modules/lodash-es/isArguments.js","moduleName":"./node_modules/lodash-es/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","resolvedModule":"./node_modules/lodash-es/isArguments.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseIsArguments.js","loc":"31:72-87","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1042,"sizes":{"javascript":1042},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","name":"./node_modules/lodash-es/_copyObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","index":313,"preOrderIndex":313,"index2":300,"postOrderIndex":300,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","issuerName":"./node_modules/lodash-es/toPlainObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","name":"./node_modules/lodash-es/toPlainObject.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":23,"resolving":10,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","module":"./node_modules/lodash-es/toPlainObject.js","moduleName":"./node_modules/lodash-es/toPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","resolvedModule":"./node_modules/lodash-es/toPlainObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_copyObject.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","module":"./node_modules/lodash-es/toPlainObject.js","moduleName":"./node_modules/lodash-es/toPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","resolvedModule":"./node_modules/lodash-es/toPlainObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_copyObject.js","loc":"29:9-19","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":502,"sizes":{"javascript":502},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTimes.js","name":"./node_modules/lodash-es/_baseTimes.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTimes.js","index":317,"preOrderIndex":317,"index2":301,"postOrderIndex":301,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","issuerName":"./node_modules/lodash-es/_arrayLikeKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","name":"./node_modules/lodash-es/_arrayLikeKeys.js","profile":{"total":46,"resolving":13,"restoring":0,"building":33,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":26,"resolving":10,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseTimes.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseTimes.js","loc":"28:29-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":488,"sizes":{"javascript":488},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeysIn.js","name":"./node_modules/lodash-es/_nativeKeysIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeysIn.js","index":319,"preOrderIndex":319,"index2":303,"postOrderIndex":303,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","issuerName":"./node_modules/lodash-es/_baseKeysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","name":"./node_modules/lodash-es/_baseKeysIn.js","profile":{"total":47,"resolving":13,"restoring":0,"building":34,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":31,"resolving":10,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeKeysIn.js","loc":"3:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeKeysIn.js","loc":"20:11-23","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":478,"sizes":{"javascript":478},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isPrototype.js","name":"./node_modules/lodash-es/_isPrototype.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isPrototype.js","index":320,"preOrderIndex":320,"index2":304,"postOrderIndex":304,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","issuerName":"./node_modules/lodash-es/_initCloneObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","name":"./node_modules/lodash-es/_initCloneObject.js","profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":19,"resolving":9,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","module":"./node_modules/lodash-es/_baseKeys.js","moduleName":"./node_modules/lodash-es/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","resolvedModule":"./node_modules/lodash-es/_baseKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isPrototype.js","loc":"1:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","module":"./node_modules/lodash-es/_baseKeys.js","moduleName":"./node_modules/lodash-es/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","resolvedModule":"./node_modules/lodash-es/_baseKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isPrototype.js","loc":"18:7-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isPrototype.js","loc":"2:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isPrototype.js","loc":"22:16-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isPrototype.js","loc":"3:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isPrototype.js","loc":"13:54-65","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 2:0-35"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":684,"sizes":{"javascript":684},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","name":"./node_modules/lodash-es/_baseCreate.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","index":322,"preOrderIndex":322,"index2":308,"postOrderIndex":308,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","issuerName":"./node_modules/lodash-es/_initCloneObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","name":"./node_modules/lodash-es/_initCloneObject.js","profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":9,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseCreate.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseCreate.js","loc":"14:6-16","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-33"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":680,"sizes":{"javascript":680},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","name":"./node_modules/lodash-es/isSymbol.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","index":328,"preOrderIndex":328,"index2":315,"postOrderIndex":315,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","issuerName":"./node_modules/lodash-es/toNumber.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","name":"./node_modules/lodash-es/toNumber.js","profile":{"total":33,"resolving":9,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isSymbol.js","loc":"3:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isSymbol.js","loc":"47:6-14","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":442,"sizes":{"javascript":442},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","name":"./node_modules/lodash-es/_baseTrim.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","index":329,"preOrderIndex":329,"index2":317,"postOrderIndex":317,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","issuerName":"./node_modules/lodash-es/toNumber.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","name":"./node_modules/lodash-es/toNumber.js","profile":{"total":33,"resolving":9,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseTrim.js","loc":"1:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseTrim.js","loc":"57:10-18","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":884,"sizes":{"javascript":884},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","name":"./node_modules/lodash-es/_createBaseEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","index":338,"preOrderIndex":338,"index2":325,"postOrderIndex":325,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","issuerName":"./node_modules/lodash-es/_baseEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","module":"./node_modules/lodash-es/_baseEach.js","moduleName":"./node_modules/lodash-es/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","resolvedModule":"./node_modules/lodash-es/_baseEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_createBaseEach.js","loc":"2:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","module":"./node_modules/lodash-es/_baseEach.js","moduleName":"./node_modules/lodash-es/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","resolvedModule":"./node_modules/lodash-es/_baseEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_createBaseEach.js","loc":"12:15-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":454,"sizes":{"javascript":454},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","name":"./node_modules/lodash-es/_baseForOwn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","index":339,"preOrderIndex":339,"index2":329,"postOrderIndex":329,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","issuerName":"./node_modules/lodash-es/_baseEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","module":"./node_modules/lodash-es/_baseEach.js","moduleName":"./node_modules/lodash-es/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","resolvedModule":"./node_modules/lodash-es/_baseEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseForOwn.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","module":"./node_modules/lodash-es/_baseEach.js","moduleName":"./node_modules/lodash-es/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","resolvedModule":"./node_modules/lodash-es/_baseEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseForOwn.js","loc":"12:30-40","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":481,"sizes":{"javascript":481},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","index":234,"preOrderIndex":234,"index2":231,"postOrderIndex":231,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","issuerName":"./node_modules/lodash-es/_defineProperty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","module":"./node_modules/lodash-es/_Map.js","moduleName":"./node_modules/lodash-es/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","resolvedModule":"./node_modules/lodash-es/_Map.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getNative.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","module":"./node_modules/lodash-es/_Map.js","moduleName":"./node_modules/lodash-es/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","resolvedModule":"./node_modules/lodash-es/_Map.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getNative.js","loc":"5:10-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","module":"./node_modules/lodash-es/_defineProperty.js","moduleName":"./node_modules/lodash-es/_defineProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","resolvedModule":"./node_modules/lodash-es/_defineProperty.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getNative.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","module":"./node_modules/lodash-es/_defineProperty.js","moduleName":"./node_modules/lodash-es/_defineProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","resolvedModule":"./node_modules/lodash-es/_defineProperty.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getNative.js","loc":"5:15-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","module":"./node_modules/lodash-es/_nativeCreate.js","moduleName":"./node_modules/lodash-es/_nativeCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","resolvedModule":"./node_modules/lodash-es/_nativeCreate.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getNative.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","module":"./node_modules/lodash-es/_nativeCreate.js","moduleName":"./node_modules/lodash-es/_nativeCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","resolvedModule":"./node_modules/lodash-es/_nativeCreate.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getNative.js","loc":"4:19-28","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":171,"sizes":{"javascript":171},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_freeGlobal.js","name":"./node_modules/lodash-es/_freeGlobal.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_freeGlobal.js","index":241,"preOrderIndex":241,"index2":220,"postOrderIndex":220,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","issuerName":"./node_modules/lodash-es/_root.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","name":"./node_modules/lodash-es/now.js","profile":{"total":34,"resolving":10,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","name":"./node_modules/lodash-es/_root.js","profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":5,"restoring":0,"building":25,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":5,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","module":"./node_modules/lodash-es/_nodeUtil.js","moduleName":"./node_modules/lodash-es/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","resolvedModule":"./node_modules/lodash-es/_nodeUtil.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_freeGlobal.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","module":"./node_modules/lodash-es/_nodeUtil.js","moduleName":"./node_modules/lodash-es/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","resolvedModule":"./node_modules/lodash-es/_nodeUtil.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_freeGlobal.js","loc":"13:35-53","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","module":"./node_modules/lodash-es/_root.js","moduleName":"./node_modules/lodash-es/_root.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","resolvedModule":"./node_modules/lodash-es/_root.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_freeGlobal.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","module":"./node_modules/lodash-es/_root.js","moduleName":"./node_modules/lodash-es/_root.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","resolvedModule":"./node_modules/lodash-es/_root.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_freeGlobal.js","loc":"7:11-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 2:0-91"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":116,"sizes":{"javascript":116},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","name":"./node_modules/lodash-es/_Symbol.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","index":244,"preOrderIndex":244,"index2":224,"postOrderIndex":224,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","issuerName":"./node_modules/lodash-es/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","name":"./node_modules/lodash-es/isFunction.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","name":"./node_modules/lodash-es/_baseGetTag.js","profile":{"total":22,"resolving":10,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":17,"resolving":6,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":6,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Symbol.js","loc":"1:0-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Symbol.js","loc":"10:21-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Symbol.js","loc":"10:30-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","module":"./node_modules/lodash-es/_getRawTag.js","moduleName":"./node_modules/lodash-es/_getRawTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","resolvedModule":"./node_modules/lodash-es/_getRawTag.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Symbol.js","loc":"1:0-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","module":"./node_modules/lodash-es/_getRawTag.js","moduleName":"./node_modules/lodash-es/_getRawTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","resolvedModule":"./node_modules/lodash-es/_getRawTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Symbol.js","loc":"17:21-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","module":"./node_modules/lodash-es/_getRawTag.js","moduleName":"./node_modules/lodash-es/_getRawTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","resolvedModule":"./node_modules/lodash-es/_getRawTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Symbol.js","loc":"17:30-48","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-25"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1137,"sizes":{"javascript":1137},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","name":"./node_modules/lodash-es/_getRawTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","index":245,"preOrderIndex":245,"index2":225,"postOrderIndex":225,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","issuerName":"./node_modules/lodash-es/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","name":"./node_modules/lodash-es/isFunction.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","name":"./node_modules/lodash-es/_baseGetTag.js","profile":{"total":22,"resolving":10,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":6,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getRawTag.js","loc":"2:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getRawTag.js","loc":"24:6-15","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-35"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":563,"sizes":{"javascript":563},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_objectToString.js","name":"./node_modules/lodash-es/_objectToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_objectToString.js","index":246,"preOrderIndex":246,"index2":226,"postOrderIndex":226,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","issuerName":"./node_modules/lodash-es/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","name":"./node_modules/lodash-es/isFunction.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","name":"./node_modules/lodash-es/_baseGetTag.js","profile":{"total":22,"resolving":10,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_objectToString.js","loc":"3:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_objectToString.js","loc":"25:6-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 2:0-35"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":526,"sizes":{"javascript":526},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/constant.js","name":"./node_modules/lodash-es/constant.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/constant.js","index":249,"preOrderIndex":249,"index2":234,"postOrderIndex":234,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","issuerName":"./node_modules/lodash-es/_baseSetToString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","name":"./node_modules/lodash-es/_setToString.js","profile":{"total":52,"resolving":13,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","name":"./node_modules/lodash-es/_baseSetToString.js","profile":{"total":28,"resolving":6,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":6,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./constant.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./constant.js","loc":"17:13-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":485,"sizes":{"javascript":485},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","name":"./node_modules/lodash-es/_assocIndexOf.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","index":264,"preOrderIndex":264,"index2":249,"postOrderIndex":249,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","issuerName":"./node_modules/lodash-es/_listCacheGet.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","name":"./node_modules/lodash-es/_listCacheGet.js","profile":{"total":38,"resolving":31,"restoring":0,"building":7,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":31,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":27,"resolving":18,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":18,"additionalIntegration":0,"factory":18,"dependencies":18},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","module":"./node_modules/lodash-es/_listCacheDelete.js","moduleName":"./node_modules/lodash-es/_listCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","resolvedModule":"./node_modules/lodash-es/_listCacheDelete.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","module":"./node_modules/lodash-es/_listCacheDelete.js","moduleName":"./node_modules/lodash-es/_listCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","resolvedModule":"./node_modules/lodash-es/_listCacheDelete.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"20:14-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","module":"./node_modules/lodash-es/_listCacheGet.js","moduleName":"./node_modules/lodash-es/_listCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","resolvedModule":"./node_modules/lodash-es/_listCacheGet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","module":"./node_modules/lodash-es/_listCacheGet.js","moduleName":"./node_modules/lodash-es/_listCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","resolvedModule":"./node_modules/lodash-es/_listCacheGet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"14:14-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","module":"./node_modules/lodash-es/_listCacheHas.js","moduleName":"./node_modules/lodash-es/_listCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","resolvedModule":"./node_modules/lodash-es/_listCacheHas.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","module":"./node_modules/lodash-es/_listCacheHas.js","moduleName":"./node_modules/lodash-es/_listCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","resolvedModule":"./node_modules/lodash-es/_listCacheHas.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"13:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","module":"./node_modules/lodash-es/_listCacheSet.js","moduleName":"./node_modules/lodash-es/_listCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","resolvedModule":"./node_modules/lodash-es/_listCacheSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","module":"./node_modules/lodash-es/_listCacheSet.js","moduleName":"./node_modules/lodash-es/_listCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","resolvedModule":"./node_modules/lodash-es/_listCacheSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"15:14-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":391,"sizes":{"javascript":391},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","index":275,"preOrderIndex":275,"index2":267,"postOrderIndex":267,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","issuerName":"./node_modules/lodash-es/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_mapCacheClear.js","loc":"1:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_mapCacheClear.js","loc":"26:27-40","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":448,"sizes":{"javascript":448},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","name":"./node_modules/lodash-es/_mapCacheDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","index":283,"preOrderIndex":283,"index2":270,"postOrderIndex":270,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","issuerName":"./node_modules/lodash-es/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":27,"resolving":18,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_mapCacheDelete.js","loc":"2:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_mapCacheDelete.js","loc":"27:31-45","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":328,"sizes":{"javascript":328},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","name":"./node_modules/lodash-es/_mapCacheGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","index":286,"preOrderIndex":286,"index2":271,"postOrderIndex":271,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","issuerName":"./node_modules/lodash-es/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_mapCacheGet.js","loc":"3:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_mapCacheGet.js","loc":"28:25-36","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":380,"sizes":{"javascript":380},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","name":"./node_modules/lodash-es/_mapCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","index":287,"preOrderIndex":287,"index2":272,"postOrderIndex":272,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","issuerName":"./node_modules/lodash-es/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_mapCacheHas.js","loc":"4:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_mapCacheHas.js","loc":"29:25-36","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":487,"sizes":{"javascript":487},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","name":"./node_modules/lodash-es/_mapCacheSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","index":288,"preOrderIndex":288,"index2":273,"postOrderIndex":273,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","issuerName":"./node_modules/lodash-es/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":18,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_mapCacheSet.js","loc":"5:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_mapCacheSet.js","loc":"30:25-36","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":128,"sizes":{"javascript":128},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","name":"./node_modules/lodash-es/_Uint8Array.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","index":306,"preOrderIndex":306,"index2":291,"postOrderIndex":291,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","issuerName":"./node_modules/lodash-es/_cloneArrayBuffer.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","name":"./node_modules/lodash-es/_cloneTypedArray.js","profile":{"total":40,"resolving":12,"restoring":0,"building":28,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","name":"./node_modules/lodash-es/_cloneArrayBuffer.js","profile":{"total":23,"resolving":9,"restoring":0,"building":14,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":7,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","module":"./node_modules/lodash-es/_cloneArrayBuffer.js","moduleName":"./node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModule":"./node_modules/lodash-es/_cloneArrayBuffer.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Uint8Array.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","module":"./node_modules/lodash-es/_cloneArrayBuffer.js","moduleName":"./node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModule":"./node_modules/lodash-es/_cloneArrayBuffer.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Uint8Array.js","loc":"12:6-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","module":"./node_modules/lodash-es/_cloneArrayBuffer.js","moduleName":"./node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModule":"./node_modules/lodash-es/_cloneArrayBuffer.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Uint8Array.js","loc":"12:33-43","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-33"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":380,"sizes":{"javascript":380},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overArg.js","name":"./node_modules/lodash-es/_overArg.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overArg.js","index":309,"preOrderIndex":309,"index2":294,"postOrderIndex":294,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","issuerName":"./node_modules/lodash-es/_getPrototype.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","name":"./node_modules/lodash-es/_initCloneObject.js","profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","name":"./node_modules/lodash-es/_getPrototype.js","profile":{"total":18,"resolving":9,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":9,"dependencies":9},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":17,"resolving":6,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","module":"./node_modules/lodash-es/_getPrototype.js","moduleName":"./node_modules/lodash-es/_getPrototype.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","resolvedModule":"./node_modules/lodash-es/_getPrototype.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_overArg.js","loc":"1:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","module":"./node_modules/lodash-es/_getPrototype.js","moduleName":"./node_modules/lodash-es/_getPrototype.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","resolvedModule":"./node_modules/lodash-es/_getPrototype.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_overArg.js","loc":"4:19-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","module":"./node_modules/lodash-es/_nativeKeys.js","moduleName":"./node_modules/lodash-es/_nativeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","resolvedModule":"./node_modules/lodash-es/_nativeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_overArg.js","loc":"1:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","module":"./node_modules/lodash-es/_nativeKeys.js","moduleName":"./node_modules/lodash-es/_nativeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","resolvedModule":"./node_modules/lodash-es/_nativeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_overArg.js","loc":"4:17-24","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":897,"sizes":{"javascript":897},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","name":"./node_modules/lodash-es/_assignValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","index":314,"preOrderIndex":314,"index2":299,"postOrderIndex":299,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","issuerName":"./node_modules/lodash-es/_copyObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","name":"./node_modules/lodash-es/toPlainObject.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","name":"./node_modules/lodash-es/_copyObject.js","profile":{"total":23,"resolving":10,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","module":"./node_modules/lodash-es/_copyObject.js","moduleName":"./node_modules/lodash-es/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","resolvedModule":"./node_modules/lodash-es/_copyObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assignValue.js","loc":"1:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","module":"./node_modules/lodash-es/_copyObject.js","moduleName":"./node_modules/lodash-es/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","resolvedModule":"./node_modules/lodash-es/_copyObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assignValue.js","loc":"34:6-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 5:0-35"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":513,"sizes":{"javascript":513},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_trimmedEndIndex.js","name":"./node_modules/lodash-es/_trimmedEndIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_trimmedEndIndex.js","index":330,"preOrderIndex":330,"index2":316,"postOrderIndex":316,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","issuerName":"./node_modules/lodash-es/_baseTrim.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","name":"./node_modules/lodash-es/toNumber.js","profile":{"total":33,"resolving":9,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","name":"./node_modules/lodash-es/_baseTrim.js","profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","module":"./node_modules/lodash-es/_baseTrim.js","moduleName":"./node_modules/lodash-es/_baseTrim.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","resolvedModule":"./node_modules/lodash-es/_baseTrim.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_trimmedEndIndex.js","loc":"1:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","module":"./node_modules/lodash-es/_baseTrim.js","moduleName":"./node_modules/lodash-es/_baseTrim.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","resolvedModule":"./node_modules/lodash-es/_baseTrim.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_trimmedEndIndex.js","loc":"15:22-37","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":882,"sizes":{"javascript":882},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","name":"./node_modules/lodash-es/keys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","index":340,"preOrderIndex":340,"index2":328,"postOrderIndex":328,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","issuerName":"./node_modules/lodash-es/_baseForOwn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","name":"./node_modules/lodash-es/_baseForOwn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":17,"resolving":6,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","module":"./node_modules/lodash-es/_baseForOwn.js","moduleName":"./node_modules/lodash-es/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","resolvedModule":"./node_modules/lodash-es/_baseForOwn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./keys.js","loc":"2:0-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","module":"./node_modules/lodash-es/_baseForOwn.js","moduleName":"./node_modules/lodash-es/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","resolvedModule":"./node_modules/lodash-es/_baseForOwn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./keys.js","loc":"13:45-49","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":323,"sizes":{"javascript":323},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getValue.js","name":"./node_modules/lodash-es/_getValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getValue.js","index":235,"preOrderIndex":235,"index2":218,"postOrderIndex":218,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","issuerName":"./node_modules/lodash-es/_getNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":7,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","module":"./node_modules/lodash-es/_getNative.js","moduleName":"./node_modules/lodash-es/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","resolvedModule":"./node_modules/lodash-es/_getNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getValue.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","module":"./node_modules/lodash-es/_getNative.js","moduleName":"./node_modules/lodash-es/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","resolvedModule":"./node_modules/lodash-es/_getNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getValue.js","loc":"13:14-22","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":12},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1415,"sizes":{"javascript":1415},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","name":"./node_modules/lodash-es/_baseIsNative.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","index":236,"preOrderIndex":236,"index2":230,"postOrderIndex":230,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","issuerName":"./node_modules/lodash-es/_getNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","module":"./node_modules/lodash-es/_getNative.js","moduleName":"./node_modules/lodash-es/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","resolvedModule":"./node_modules/lodash-es/_getNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseIsNative.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","module":"./node_modules/lodash-es/_getNative.js","moduleName":"./node_modules/lodash-es/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","resolvedModule":"./node_modules/lodash-es/_getNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseIsNative.js","loc":"14:9-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 16:0-17:35"],"depth":12},{"type":"module","moduleType":"javascript/esm","layer":null,"size":745,"sizes":{"javascript":745},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","index":276,"preOrderIndex":276,"index2":266,"postOrderIndex":266,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","issuerName":"./node_modules/lodash-es/_mapCacheClear.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Hash.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Hash.js","loc":"15:16-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Hash.js","loc":"17:18-22","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 26:0-33"],"depth":12},{"type":"module","moduleType":"javascript/esm","layer":null,"size":398,"sizes":{"javascript":398},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","name":"./node_modules/lodash-es/_getMapData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","index":284,"preOrderIndex":284,"index2":269,"postOrderIndex":269,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","issuerName":"./node_modules/lodash-es/_mapCacheDelete.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","name":"./node_modules/lodash-es/_mapCacheDelete.js","profile":{"total":27,"resolving":18,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":7,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":7,"additionalIntegration":0,"factory":7,"dependencies":7},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","module":"./node_modules/lodash-es/_mapCacheDelete.js","moduleName":"./node_modules/lodash-es/_mapCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","resolvedModule":"./node_modules/lodash-es/_mapCacheDelete.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getMapData.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","module":"./node_modules/lodash-es/_mapCacheDelete.js","moduleName":"./node_modules/lodash-es/_mapCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","resolvedModule":"./node_modules/lodash-es/_mapCacheDelete.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getMapData.js","loc":"13:15-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","module":"./node_modules/lodash-es/_mapCacheGet.js","moduleName":"./node_modules/lodash-es/_mapCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","resolvedModule":"./node_modules/lodash-es/_mapCacheGet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getMapData.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","module":"./node_modules/lodash-es/_mapCacheGet.js","moduleName":"./node_modules/lodash-es/_mapCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","resolvedModule":"./node_modules/lodash-es/_mapCacheGet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getMapData.js","loc":"13:9-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","module":"./node_modules/lodash-es/_mapCacheHas.js","moduleName":"./node_modules/lodash-es/_mapCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","resolvedModule":"./node_modules/lodash-es/_mapCacheHas.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getMapData.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","module":"./node_modules/lodash-es/_mapCacheHas.js","moduleName":"./node_modules/lodash-es/_mapCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","resolvedModule":"./node_modules/lodash-es/_mapCacheHas.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getMapData.js","loc":"13:9-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","module":"./node_modules/lodash-es/_mapCacheSet.js","moduleName":"./node_modules/lodash-es/_mapCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","resolvedModule":"./node_modules/lodash-es/_mapCacheSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getMapData.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","module":"./node_modules/lodash-es/_mapCacheSet.js","moduleName":"./node_modules/lodash-es/_mapCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","resolvedModule":"./node_modules/lodash-es/_mapCacheSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getMapData.js","loc":"14:13-23","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":12},{"type":"module","moduleType":"javascript/esm","layer":null,"size":774,"sizes":{"javascript":774},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","name":"./node_modules/lodash-es/_baseKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","index":341,"preOrderIndex":341,"index2":327,"postOrderIndex":327,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","issuerName":"./node_modules/lodash-es/keys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","name":"./node_modules/lodash-es/_baseForOwn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","name":"./node_modules/lodash-es/keys.js","profile":{"total":17,"resolving":6,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":1,"restoring":0,"building":17,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseKeys.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseKeys.js","loc":"34:55-63","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 5:0-35"],"depth":12},{"type":"module","moduleType":"javascript/esm","layer":null,"size":562,"sizes":{"javascript":562},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","name":"./node_modules/lodash-es/_isMasked.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","index":238,"preOrderIndex":238,"index2":223,"postOrderIndex":223,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","issuerName":"./node_modules/lodash-es/_baseIsNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","name":"./node_modules/lodash-es/_baseIsNative.js","profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":13,"resolving":3,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isMasked.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isMasked.js","loc":"40:26-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-7:5"],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":554,"sizes":{"javascript":554},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_toSource.js","name":"./node_modules/lodash-es/_toSource.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_toSource.js","index":247,"preOrderIndex":247,"index2":229,"postOrderIndex":229,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","issuerName":"./node_modules/lodash-es/_baseIsNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","name":"./node_modules/lodash-es/_baseIsNative.js","profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":15,"resolving":3,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_toSource.js","loc":"4:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_toSource.js","loc":"44:22-30","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 2:0-35"],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":279,"sizes":{"javascript":279},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","name":"./node_modules/lodash-es/_hashClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","index":277,"preOrderIndex":277,"index2":261,"postOrderIndex":261,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","issuerName":"./node_modules/lodash-es/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":8,"resolving":3,"restoring":0,"building":5,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_hashClear.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_hashClear.js","loc":"26:23-32","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":443,"sizes":{"javascript":443},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashDelete.js","name":"./node_modules/lodash-es/_hashDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashDelete.js","index":279,"preOrderIndex":279,"index2":262,"postOrderIndex":262,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","issuerName":"./node_modules/lodash-es/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":12,"resolving":3,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_hashDelete.js","loc":"2:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_hashDelete.js","loc":"27:27-37","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":770,"sizes":{"javascript":770},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","name":"./node_modules/lodash-es/_hashGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","index":280,"preOrderIndex":280,"index2":263,"postOrderIndex":263,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","issuerName":"./node_modules/lodash-es/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":9,"resolving":3,"restoring":0,"building":6,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_hashGet.js","loc":"3:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_hashGet.js","loc":"28:21-28","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 7:0-35"],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":624,"sizes":{"javascript":624},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","name":"./node_modules/lodash-es/_hashHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","index":281,"preOrderIndex":281,"index2":264,"postOrderIndex":264,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","issuerName":"./node_modules/lodash-es/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":11,"resolving":3,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_hashHas.js","loc":"4:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_hashHas.js","loc":"29:21-28","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-35"],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":596,"sizes":{"javascript":596},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","name":"./node_modules/lodash-es/_hashSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","index":282,"preOrderIndex":282,"index2":265,"postOrderIndex":265,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","issuerName":"./node_modules/lodash-es/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":12,"resolving":3,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_hashSet.js","loc":"5:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_hashSet.js","loc":"30:21-28","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":428,"sizes":{"javascript":428},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isKeyable.js","name":"./node_modules/lodash-es/_isKeyable.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isKeyable.js","index":285,"preOrderIndex":285,"index2":268,"postOrderIndex":268,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","issuerName":"./node_modules/lodash-es/_getMapData.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","name":"./node_modules/lodash-es/_mapCacheDelete.js","profile":{"total":27,"resolving":18,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","name":"./node_modules/lodash-es/_getMapData.js","profile":{"total":18,"resolving":7,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":7,"additionalIntegration":0,"factory":7,"dependencies":7},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":12,"resolving":3,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","module":"./node_modules/lodash-es/_getMapData.js","moduleName":"./node_modules/lodash-es/_getMapData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","resolvedModule":"./node_modules/lodash-es/_getMapData.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isKeyable.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","module":"./node_modules/lodash-es/_getMapData.js","moduleName":"./node_modules/lodash-es/_getMapData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","resolvedModule":"./node_modules/lodash-es/_getMapData.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isKeyable.js","loc":"13:9-18","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":202,"sizes":{"javascript":202},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","name":"./node_modules/lodash-es/_nativeKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","index":342,"preOrderIndex":342,"index2":326,"postOrderIndex":326,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","issuerName":"./node_modules/lodash-es/_baseKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","name":"./node_modules/lodash-es/_baseForOwn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","name":"./node_modules/lodash-es/keys.js","profile":{"total":17,"resolving":6,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","name":"./node_modules/lodash-es/_baseKeys.js","profile":{"total":18,"resolving":1,"restoring":0,"building":17,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":14,"resolving":1,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","module":"./node_modules/lodash-es/_baseKeys.js","moduleName":"./node_modules/lodash-es/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","resolvedModule":"./node_modules/lodash-es/_baseKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeKeys.js","loc":"2:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","module":"./node_modules/lodash-es/_baseKeys.js","moduleName":"./node_modules/lodash-es/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","resolvedModule":"./node_modules/lodash-es/_baseKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeKeys.js","loc":"19:11-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-46"],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":155,"sizes":{"javascript":155},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","name":"./node_modules/lodash-es/_coreJsData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","index":239,"preOrderIndex":239,"index2":222,"postOrderIndex":222,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","issuerName":"./node_modules/lodash-es/_isMasked.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","name":"./node_modules/lodash-es/_baseIsNative.js","profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","name":"./node_modules/lodash-es/_isMasked.js","profile":{"total":13,"resolving":3,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":6,"resolving":4,"restoring":0,"building":2,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","module":"./node_modules/lodash-es/_isMasked.js","moduleName":"./node_modules/lodash-es/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","resolvedModule":"./node_modules/lodash-es/_isMasked.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_coreJsData.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","module":"./node_modules/lodash-es/_isMasked.js","moduleName":"./node_modules/lodash-es/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","resolvedModule":"./node_modules/lodash-es/_isMasked.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_coreJsData.js","loc":"5:26-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","module":"./node_modules/lodash-es/_isMasked.js","moduleName":"./node_modules/lodash-es/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","resolvedModule":"./node_modules/lodash-es/_isMasked.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_coreJsData.js","loc":"5:40-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","module":"./node_modules/lodash-es/_isMasked.js","moduleName":"./node_modules/lodash-es/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","resolvedModule":"./node_modules/lodash-es/_isMasked.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_coreJsData.js","loc":"5:59-83","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-44"],"depth":14},{"type":"module","moduleType":"javascript/esm","layer":null,"size":185,"sizes":{"javascript":185},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","name":"./node_modules/lodash-es/_nativeCreate.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","index":278,"preOrderIndex":278,"index2":260,"postOrderIndex":260,"cacheable":true,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","issuerName":"./node_modules/lodash-es/_hashClear.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","name":"./node_modules/lodash-es/_hashClear.js","profile":{"total":8,"resolving":3,"restoring":0,"building":5,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":6,"resolving":4,"restoring":0,"building":2,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":4,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","module":"./node_modules/lodash-es/_hashClear.js","moduleName":"./node_modules/lodash-es/_hashClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","resolvedModule":"./node_modules/lodash-es/_hashClear.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeCreate.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","module":"./node_modules/lodash-es/_hashClear.js","moduleName":"./node_modules/lodash-es/_hashClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","resolvedModule":"./node_modules/lodash-es/_hashClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeCreate.js","loc":"11:18-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","module":"./node_modules/lodash-es/_hashClear.js","moduleName":"./node_modules/lodash-es/_hashClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","resolvedModule":"./node_modules/lodash-es/_hashClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeCreate.js","loc":"11:33-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","module":"./node_modules/lodash-es/_hashGet.js","moduleName":"./node_modules/lodash-es/_hashGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","resolvedModule":"./node_modules/lodash-es/_hashGet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeCreate.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","module":"./node_modules/lodash-es/_hashGet.js","moduleName":"./node_modules/lodash-es/_hashGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","resolvedModule":"./node_modules/lodash-es/_hashGet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeCreate.js","loc":"23:6-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","module":"./node_modules/lodash-es/_hashHas.js","moduleName":"./node_modules/lodash-es/_hashHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","resolvedModule":"./node_modules/lodash-es/_hashHas.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeCreate.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","module":"./node_modules/lodash-es/_hashHas.js","moduleName":"./node_modules/lodash-es/_hashHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","resolvedModule":"./node_modules/lodash-es/_hashHas.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeCreate.js","loc":"20:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","module":"./node_modules/lodash-es/_hashSet.js","moduleName":"./node_modules/lodash-es/_hashSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","resolvedModule":"./node_modules/lodash-es/_hashSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeCreate.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","module":"./node_modules/lodash-es/_hashSet.js","moduleName":"./node_modules/lodash-es/_hashSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","resolvedModule":"./node_modules/lodash-es/_hashSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeCreate.js","loc":"19:15-27","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-47"],"depth":14}]},{"type":"module","moduleType":"javascript/dynamic","layer":null,"size":42,"sizes":{"javascript":42},"built":true,"codeGenerated":true,"cached":false,"identifier":"external \"jQuery\"","name":"external \"jQuery\"","nameForCondition":null,"index":1,"preOrderIndex":1,"index2":0,"postOrderIndex":0,"optional":false,"orphan":false,"dependent":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3609,"issuerId":null,"chunks":[81,104,290,527,628,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"12:0-23","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"33:6-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:6-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"11:0-23","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"158:29-37","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"247:2-8","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"11:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"158:29-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"jquery","loc":"247:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"5:25-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"25:27-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"35:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"43:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"44:25-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"59:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"72:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"82:4-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"86:8-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"101:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"111:4-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"10:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"12:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:34-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:29-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:29-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"37:13-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"5:23-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"31:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"13:2-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"20:2-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"27:11-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"27:24-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"68:8-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"69:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"81:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"82:33-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"86:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"87:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"95:8-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"102:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"103:33-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"107:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"108:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"115:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"116:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"119:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"145:8-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:22-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"7:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"9:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"25:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"35:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"39:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"2:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"9:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"11:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"62:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"75:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:27-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"10:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:18-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"24:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","module":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","moduleName":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","module":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","moduleName":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"57:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","module":"./src/_js/customizer/fonts/utils/update-font-head-title.js","moduleName":"./src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","module":"./src/_js/customizer/fonts/utils/update-font-head-title.js","moduleName":"./src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","module":"./src/_js/customizer/fonts/utils/update-variant-field.js","moduleName":"./src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","module":"./src/_js/customizer/fonts/utils/update-variant-field.js","moduleName":"./src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"40:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"5:25-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"25:27-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"35:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"43:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"44:25-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"59:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"72:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"82:4-10","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"86:8-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"101:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"111:4-10","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"10:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"12:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:34-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:29-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:29-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"37:13-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"5:23-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"31:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"13:2-33","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"20:2-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"27:11-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"27:24-44","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"68:8-9","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"69:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"81:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"82:33-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"86:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"87:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"95:8-9","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"102:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"103:33-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"107:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"108:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"115:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"116:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"119:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"145:8-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:22-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"7:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"9:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"25:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"35:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"39:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"2:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"9:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"11:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"62:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"75:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:27-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"10:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:18-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"24:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"57:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"40:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"6:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:23-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"6:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:23-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"9:0-23","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"13:12-13","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:20-21","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:17-18","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"23:31-32","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"44:6-7","moduleId":4299,"resolvedModuleId":4299}],"usedExports":true,"providedExports":null,"optimizationBailout":["ModuleConcatenation bailout: Module is not in strict mode"],"depth":1},{"type":"module","moduleType":"runtime","layer":null,"size":302,"sizes":{"runtime":302},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/compat get default export","name":"webpack/runtime/compat get default export","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[861],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":313,"sizes":{"runtime":313},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/define property getters","name":"webpack/runtime/define property getters","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[861],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":221,"sizes":{"runtime":221},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/global","name":"webpack/runtime/global","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[861],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":103,"sizes":{"runtime":103},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/hasOwnProperty shorthand","name":"webpack/runtime/hasOwnProperty shorthand","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[861],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":279,"sizes":{"runtime":279},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/make namespace object","name":"webpack/runtime/make namespace object","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[861],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null},{"type":"module","moduleType":"runtime","layer":null,"size":128,"sizes":{"runtime":128},"built":false,"codeGenerated":true,"cached":false,"identifier":"webpack/runtime/node module decorator","name":"webpack/runtime/node module decorator","nameForCondition":null,"index":null,"preOrderIndex":null,"index2":null,"postOrderIndex":null,"optional":false,"orphan":false,"dependent":false,"failed":false,"errors":0,"warnings":0,"id":"","chunks":[861],"assets":[],"reasons":[],"usedExports":null,"providedExports":[],"optimizationBailout":[],"depth":null}],"origins":[{"module":"","moduleIdentifier":"","moduleName":"","loc":"customizer.min","request":"./src/_js/customizer/index.js"}]}],"modules":[{"type":"module","moduleType":"javascript/esm","layer":null,"size":234579,"sizes":{"javascript":234579},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","name":"./src/_js/customizer/index.js + 169 modules","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","index":0,"preOrderIndex":0,"index2":368,"postOrderIndex":368,"cacheable":true,"optional":false,"orphan":false,"failed":false,"errors":0,"warnings":0,"id":9495,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer/index.js","loc":"customizer","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer/index.js","loc":"customizer.min","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null}],"usedExports":true,"providedExports":["convertFontVariantToFVD","determineFontType","getCSSFromPalettes","getFontDetails"],"optimizationBailout":["ModuleConcatenation bailout: Cannot concat with ./node_modules/chroma-js/chroma.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/contextual-menu/style.scss: Module uses module.id","ModuleConcatenation bailout: Cannot concat with ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer/colors/components/source-colors/style.scss: Module uses module.id","ModuleConcatenation bailout: Cannot concat with ./node_modules/hsluv/hsluv.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/debounce.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/each.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/pick.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/prop-types/index.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/react/index.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/reactcss/lib/index.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/tinycolor2/tinycolor.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with external \"jQuery\": Module is not in strict mode"],"depth":0,"modules":[{"type":"module","moduleType":"javascript/auto","layer":null,"size":1326,"sizes":{"javascript":1326},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","index":0,"preOrderIndex":0,"index2":368,"postOrderIndex":368,"cacheable":true,"optional":false,"orphan":false,"issuer":null,"issuerName":null,"issuerPath":null,"failed":false,"errors":0,"warnings":0,"profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[],"usedExports":true,"providedExports":["convertFontVariantToFVD","determineFontType","getCSSFromPalettes","getFontDetails"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 12:0-31:3"],"depth":0},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2325,"sizes":{"javascript":2325},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","index":2,"preOrderIndex":2,"index2":101,"postOrderIndex":101,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../global-service","loc":"5:0-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"33:17-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"36:2-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"37:2-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"38:2-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"44:33-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"48:27-57","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../global-service","loc":"3:0-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../global-service","loc":"5:0-73","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"96:2-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"99:6-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"100:28-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"111:25-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./global-service","loc":"5:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./global-service","loc":"13:2-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./global-service","loc":"14:17-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./global-service","loc":"16:2-35","moduleId":null,"resolvedModuleId":null}],"usedExports":["bindConnectedFields","getCallback","getSetting","getSettingConfig","getSettings","loadSettings","setCallback","setSettings","unbindConnectedFields"],"providedExports":["bindConnectedFields","deleteCallbacks","getCallback","getCallbacks","getSetting","getSettingConfig","getSettings","loadSettings","setCallback","setSetting","setSettings","unbindConnectedFields"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 3:0-19"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3700,"sizes":{"javascript":3700},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","name":"./src/_js/customizer/create-reset-buttons.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","index":103,"preOrderIndex":103,"index2":103,"postOrderIndex":103,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":251,"resolving":8,"restoring":0,"building":243,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./create-reset-buttons","loc":"11:0-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./create-reset-buttons","loc":"17:2-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["createResetButtons"],"providedExports":["createResetButtons"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2273,"sizes":{"javascript":2273},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","name":"./src/_js/customizer/fields/range/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","index":105,"preOrderIndex":105,"index2":104,"postOrderIndex":104,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":552,"resolving":255,"restoring":0,"building":297,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":255,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fields/range","loc":"7:0-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./fields/range","loc":"18:2-19","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleRangeFields"],"providedExports":["handleRangeFields"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2003,"sizes":{"javascript":2003},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","name":"./src/_js/customizer/fields/color-select/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","index":106,"preOrderIndex":106,"index2":105,"postOrderIndex":105,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":552,"resolving":255,"restoring":0,"building":297,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":255,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fields/color-select","loc":"6:0-64","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./fields/color-select","loc":"19:2-25","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleColorSelectFields"],"providedExports":["convertToColorSelect","handleColorSelectFields"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":873,"sizes":{"javascript":873},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","name":"./src/_js/customizer/fields/tabs/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","index":107,"preOrderIndex":107,"index2":106,"postOrderIndex":106,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":552,"resolving":255,"restoring":0,"building":297,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":255,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fields/tabs","loc":"8:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./fields/tabs","loc":"20:2-12","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleTabs"],"providedExports":["handleTabs"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":4966,"sizes":{"javascript":4966},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","name":"./src/_js/customizer/folding-fields.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","index":108,"preOrderIndex":108,"index2":107,"postOrderIndex":107,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":99,"resolving":7,"restoring":0,"building":92,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./folding-fields","loc":"9:0-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./folding-fields","loc":"23:4-23","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleFoldingFields"],"providedExports":["handleFoldingFields"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3289,"sizes":{"javascript":3289},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","name":"./src/_js/customizer/colors/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","index":109,"preOrderIndex":109,"index2":350,"postOrderIndex":350,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":351,"resolving":99,"restoring":0,"building":252,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":99,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./colors","loc":"2:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./colors","loc":"27:2-18","moduleId":null,"resolvedModuleId":null}],"usedExports":["initializeColors"],"providedExports":["initializeColors"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":4726,"sizes":{"javascript":4726},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","index":116,"preOrderIndex":116,"index2":347,"postOrderIndex":347,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","module":"./src/_js/customizer/colors/color-palette-builder/index.js","moduleName":"./src/_js/customizer/colors/color-palette-builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","resolvedModule":"./src/_js/customizer/colors/color-palette-builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../components/builder","loc":"1:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","module":"./src/_js/customizer/colors/color-palette-builder/index.js","moduleName":"./src/_js/customizer/colors/color-palette-builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","resolvedModule":"./src/_js/customizer/colors/color-palette-builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../components/builder","loc":"15:54-61","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./colors/components/builder","loc":"34:0-65","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./colors/components/builder","loc":"34:0-65","moduleId":null,"resolvedModuleId":null}],"usedExports":["Builder"],"providedExports":["Builder","addAutoPalettes","getBestPositionInPalette","getCSSFromPalettes","getColorVariables","getColorsFromInputValue","getFunctionalColors","getInitialColorVaraibles","getPalettesFromColors","getSourceIndex","getValueFromColors","getVariablesCSS","mapAddSourceIndex","mapAddTextColors","mapColorToPalette","mapCorrectLightness","mapInterpolateSource","mapSanitizePalettes","mapUseSource"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 18:0-20:36"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":16020,"sizes":{"javascript":16020},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","name":"./src/_js/customizer/colors/components/builder/utils.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","index":117,"preOrderIndex":117,"index2":116,"postOrderIndex":116,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","issuerName":"./src/_js/customizer/colors/components/builder/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":804,"resolving":364,"restoring":0,"building":440,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":364,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"15:0-113","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"17:0-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./utils","loc":"17:0-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"28:27-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"58:14-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"72:22-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"75:16-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"83:17-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./colors/components/builder","loc":"34:0-65","moduleId":null,"resolvedModuleId":null}],"usedExports":["getCSSFromPalettes","getColorsFromInputValue","getPalettesFromColors","getValueFromColors"],"providedExports":["addAutoPalettes","getBestPositionInPalette","getCSSFromPalettes","getColorVariables","getColorsFromInputValue","getFunctionalColors","getInitialColorVaraibles","getPalettesFromColors","getSourceIndex","getValueFromColors","getVariablesCSS","mapAddSourceIndex","mapAddTextColors","mapColorToPalette","mapCorrectLightness","mapInterpolateSource","mapSanitizePalettes","mapUseSource"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":5030,"sizes":{"javascript":5030},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","name":"./src/_js/customizer/fonts/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","index":352,"preOrderIndex":352,"index2":364,"postOrderIndex":364,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":352,"resolving":100,"restoring":0,"building":252,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":100,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fonts","loc":"3:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./fonts","loc":"28:2-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["initializeFonts"],"providedExports":["initializeFonts"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 94:0-114:7"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1100,"sizes":{"javascript":1100},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","index":355,"preOrderIndex":355,"index2":352,"postOrderIndex":352,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"4:0-198","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"15:2-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"37:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"39:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"41:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"65:23-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"67:2-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"69:2-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"77:4-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"77:30-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"83:18-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"87:11-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"88:8-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"105:31-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./index","loc":"2:0-68","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./index","loc":"22:16-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./index","loc":"23:18-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"27:2-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./index","loc":"2:0-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"12:6-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"17:2-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"76:2-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./index","loc":"2:0-82","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"12:6-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"12:44-66","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"17:2-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"46:18-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"60:25-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"79:2-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null}],"usedExports":["getSettingID","getWrapper"],"providedExports":["convertFontVariantToFVD","determineFontType","fontsService","getCallbackFilter","getFontDetails","getSettingID","getWrapper","handleFontPopupToggle","initSubfield","loadFontValue","selfUpdateValue","standardizeNumericalValue","updateFontHeadTitle","updateVariantField"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":872,"sizes":{"javascript":872},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","name":"./src/_js/customizer/fonts/utils/get-font-details.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","index":359,"preOrderIndex":359,"index2":356,"postOrderIndex":356,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":582,"resolving":235,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":235,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"65:23-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./get-font-details","loc":"4:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./get-font-details","loc":"4:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"60:25-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null}],"usedExports":["getFontDetails"],"providedExports":["getFontDetails"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":632,"sizes":{"javascript":632},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/determine-font-type.js","name":"./src/_js/customizer/fonts/utils/determine-font-type.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/determine-font-type.js","index":360,"preOrderIndex":360,"index2":355,"postOrderIndex":355,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":581,"resolving":234,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":234,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","module":"./src/_js/customizer/fonts/utils/get-font-details.js","moduleName":"./src/_js/customizer/fonts/utils/get-font-details.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","resolvedModule":"./src/_js/customizer/fonts/utils/get-font-details.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./determine-font-type","loc":"1:0-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","module":"./src/_js/customizer/fonts/utils/get-font-details.js","moduleName":"./src/_js/customizer/fonts/utils/get-font-details.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","resolvedModule":"./src/_js/customizer/fonts/utils/get-font-details.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./determine-font-type","loc":"7:15-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./determine-font-type","loc":"3:0-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./determine-font-type","loc":"3:0-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null}],"usedExports":["determineFontType"],"providedExports":["determineFontType"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1433,"sizes":{"javascript":1433},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","name":"./src/_js/customizer/font-palettes/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","index":366,"preOrderIndex":366,"index2":365,"postOrderIndex":365,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":366,"resolving":251,"restoring":0,"building":115,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":251,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./font-palettes","loc":"4:0-57","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./font-palettes","loc":"29:2-24","moduleId":null,"resolvedModuleId":null}],"usedExports":["initializeFontPalettes"],"providedExports":["initializeFontPalettes"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1473,"sizes":{"javascript":1473},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","name":"./src/_js/customizer/scale-preview.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","index":367,"preOrderIndex":367,"index2":366,"postOrderIndex":366,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":251,"resolving":7,"restoring":0,"building":244,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./scale-preview","loc":"10:0-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./scale-preview","loc":"30:2-14","moduleId":null,"resolvedModuleId":null}],"usedExports":["scalePreview"],"providedExports":["scalePreview"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1331,"sizes":{"javascript":1331},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/convert-font-variant.js","name":"./src/_js/customizer/fonts/utils/convert-font-variant.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/convert-font-variant.js","index":368,"preOrderIndex":368,"index2":367,"postOrderIndex":367,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":580,"resolving":233,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":233,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./convert-font-variant","loc":"2:0-65","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./convert-font-variant","loc":"2:0-65","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null}],"usedExports":["convertFontVariantToFVD"],"providedExports":["convertFontVariantToFVD"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1575,"sizes":{"javascript":1575},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/api-set-setting-value.js","name":"./src/_js/customizer/utils/api-set-setting-value.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/api-set-setting-value.js","index":104,"preOrderIndex":104,"index2":102,"postOrderIndex":102,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","issuerName":"./src/_js/customizer/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","name":"./src/_js/customizer/create-reset-buttons.js","profile":{"total":251,"resolving":8,"restoring":0,"building":243,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","name":"./src/_js/customizer/utils/index.js","profile":{"total":895,"resolving":639,"restoring":0,"building":256,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":639,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":328,"resolving":211,"restoring":0,"building":117,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":211,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"64:6-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"91:12-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"116:8-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","module":"./src/_js/customizer/utils/index.js","moduleName":"./src/_js/customizer/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","resolvedModule":"./src/_js/customizer/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./api-set-setting-value","loc":"1:0-61","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","module":"./src/_js/customizer/utils/index.js","moduleName":"./src/_js/customizer/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","resolvedModule":"./src/_js/customizer/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./api-set-setting-value","loc":"1:0-61","moduleId":null,"resolvedModuleId":null}],"usedExports":["apiSetSettingValue"],"providedExports":["apiSetSettingValue"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":698,"sizes":{"javascript":698},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","name":"./src/_js/customizer/colors/color-palette-builder/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","index":115,"preOrderIndex":115,"index2":348,"postOrderIndex":348,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","issuerName":"./src/_js/customizer/colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","name":"./src/_js/customizer/colors/index.js","profile":{"total":351,"resolving":99,"restoring":0,"building":252,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":99,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":846,"resolving":577,"restoring":0,"building":269,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":577,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./color-palette-builder","loc":"2:0-67","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./color-palette-builder","loc":"9:2-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["initializePaletteBuilder"],"providedExports":["initializePaletteBuilder"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1230,"sizes":{"javascript":1230},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/contrast-array.js","name":"./src/_js/customizer/colors/components/builder/contrast-array.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/contrast-array.js","index":120,"preOrderIndex":120,"index2":115,"postOrderIndex":115,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","issuerName":"./src/_js/customizer/colors/components/builder/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","name":"./src/_js/customizer/colors/components/builder/utils.js","profile":{"total":804,"resolving":364,"restoring":0,"building":440,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":364,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":141,"resolving":69,"restoring":0,"building":72,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":69,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./contrast-array","loc":"21:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./contrast-array","loc":"209:42-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./contrast-array","loc":"277:38-51","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-3:3"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":112,"sizes":{"javascript":112},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/context.js","name":"./src/_js/customizer/colors/context.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/context.js","index":121,"preOrderIndex":121,"index2":117,"postOrderIndex":117,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","issuerName":"./src/_js/customizer/colors/components/builder/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":617,"resolving":362,"restoring":0,"building":255,"integration":0,"storing":0,"additionalResolving":12,"additionalIntegration":0,"factory":362,"dependencies":12},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../context","loc":"14:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../context","loc":"85:42-64","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../context","loc":"16:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../context","loc":"26:31-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../context","loc":"101:32-45","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-45"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6954,"sizes":{"javascript":6954},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","index":122,"preOrderIndex":122,"index2":346,"postOrderIndex":346,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","issuerName":"./src/_js/customizer/colors/components/builder/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../source-colors","loc":"13:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../source-colors","loc":"92:38-50","moduleId":null,"resolvedModuleId":null}],"usedExports":["SourceColors"],"providedExports":["SourceColors"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 18:0-22:32"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1237,"sizes":{"javascript":1237},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/utils.js","name":"./src/_js/customizer/colors/utils.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/utils.js","index":351,"preOrderIndex":351,"index2":349,"postOrderIndex":349,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","issuerName":"./src/_js/customizer/colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","name":"./src/_js/customizer/colors/index.js","profile":{"total":351,"resolving":99,"restoring":0,"building":252,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":99,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":574,"resolving":189,"restoring":0,"building":385,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":189,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"3:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"61:19-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"65:19-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["moveConnectedFields"],"providedExports":["moveConnectedFields"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":740,"sizes":{"javascript":740},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","name":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","index":353,"preOrderIndex":353,"index2":351,"postOrderIndex":351,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":582,"resolving":235,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":235,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"15:2-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./handle-font-popup-toggle","loc":"5:0-67","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./handle-font-popup-toggle","loc":"5:0-67","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleFontPopupToggle"],"providedExports":["handleFontPopupToggle"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1014,"sizes":{"javascript":1014},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","name":"./src/_js/customizer/fonts/utils/init-subfield.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","index":354,"preOrderIndex":354,"index2":358,"postOrderIndex":358,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":582,"resolving":236,"restoring":0,"building":346,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":236,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"37:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"39:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"41:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./init-subfield","loc":"6:0-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./init-subfield","loc":"6:0-47","moduleId":null,"resolvedModuleId":null}],"usedExports":["initSubfield"],"providedExports":["initSubfield"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3464,"sizes":{"javascript":3464},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","name":"./src/_js/customizer/fonts/utils/self-update-value.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","index":356,"preOrderIndex":356,"index2":357,"postOrderIndex":357,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":583,"resolving":237,"restoring":0,"building":346,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":237,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"77:4-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./self-update-value","loc":"8:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./self-update-value","loc":"8:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"27:2-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["selfUpdateValue"],"providedExports":["selfUpdateValue"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":414,"sizes":{"javascript":414},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/fonts-service.js","name":"./src/_js/customizer/fonts/utils/fonts-service.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/fonts-service.js","index":357,"preOrderIndex":357,"index2":353,"postOrderIndex":353,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":596,"resolving":340,"restoring":0,"building":256,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":340,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"87:11-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fonts-service","loc":"12:0-49","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"(skipped side-effect-free modules)","userRequest":"./fonts-service","loc":"13:0-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"12:6-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"17:2-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"76:2-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"12:6-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"12:44-66","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"17:2-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"79:2-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["isLoading","isUpdating","setLoading","setUpdating"],"providedExports":["isLoading","isUpdating","setLoading","setUpdating"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-18"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2712,"sizes":{"javascript":2712},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","name":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","index":358,"preOrderIndex":358,"index2":354,"postOrderIndex":354,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":593,"resolving":237,"restoring":0,"building":356,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":237,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./standardize-numerical-value","loc":"1:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./standardize-numerical-value","loc":"42:33-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./standardize-numerical-value","loc":"76:42-67","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./standardize-numerical-value","loc":"107:37-62","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./standardize-numerical-value","loc":"9:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./standardize-numerical-value","loc":"9:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./standardize-numerical-value","loc":"4:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./standardize-numerical-value","loc":"30:26-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"46:18-43","moduleId":null,"resolvedModuleId":null}],"usedExports":["standardizeNumericalValue"],"providedExports":["standardizeNumericalValue"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":600,"sizes":{"javascript":600},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","name":"./src/_js/customizer/fonts/utils/update-font-head-title.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","index":361,"preOrderIndex":361,"index2":359,"postOrderIndex":359,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":594,"resolving":238,"restoring":0,"building":356,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":238,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"67:2-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./update-font-head-title","loc":"10:0-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./update-font-head-title","loc":"10:0-63","moduleId":null,"resolvedModuleId":null}],"usedExports":["updateFontHeadTitle"],"providedExports":["updateFontHeadTitle"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2211,"sizes":{"javascript":2211},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","name":"./src/_js/customizer/fonts/utils/update-variant-field.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","index":362,"preOrderIndex":362,"index2":360,"postOrderIndex":360,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":596,"resolving":340,"restoring":0,"building":256,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":340,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"69:2-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./update-variant-field","loc":"11:0-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./update-variant-field","loc":"11:0-60","moduleId":null,"resolvedModuleId":null}],"usedExports":["updateVariantField"],"providedExports":["updateVariantField"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3381,"sizes":{"javascript":3381},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","name":"./src/_js/customizer/fonts/utils/load-font-value.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","index":363,"preOrderIndex":363,"index2":362,"postOrderIndex":362,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":582,"resolving":236,"restoring":0,"building":346,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":236,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"88:8-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./load-font-value","loc":"7:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./load-font-value","loc":"7:0-50","moduleId":null,"resolvedModuleId":null}],"usedExports":["loadFontValue"],"providedExports":["loadFontValue"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":5326,"sizes":{"javascript":5326},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","name":"./src/_js/customizer/fonts/utils/callback-filter.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","index":365,"preOrderIndex":365,"index2":363,"postOrderIndex":363,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":580,"resolving":233,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":233,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"105:31-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./callback-filter","loc":"1:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./callback-filter","loc":"1:0-54","moduleId":null,"resolvedModuleId":null}],"usedExports":["getCallbackFilter"],"providedExports":["getCallbackFilter"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":412,"sizes":{"javascript":412},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","name":"./src/_js/customizer/colors/components/source-colors/style.scss","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","index":123,"preOrderIndex":123,"index2":121,"postOrderIndex":121,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","issuerName":"./src/_js/customizer/colors/components/source-colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":16,"resolving":15,"restoring":0,"building":1,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":15,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./style.scss","loc":"23:0-22","moduleId":null,"resolvedModuleId":null}],"usedExports":[],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-17"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3837,"sizes":{"javascript":3837},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/utils.js","name":"./src/_js/customizer/colors/components/source-colors/utils.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/utils.js","index":127,"preOrderIndex":127,"index2":122,"postOrderIndex":122,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","issuerName":"./src/_js/customizer/colors/components/source-colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":121,"resolving":21,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"17:0-89","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"32:16-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"106:14-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"112:16-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"117:16-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"127:16-27","moduleId":null,"resolvedModuleId":null}],"usedExports":["addNewColorGroup","addNewColorToGroup","deleteColor","updateColor"],"providedExports":["addNewColorGroup","addNewColorToGroup","deleteColor","getNewColor","getNewColorGroup","getNewColorHex","updateColor"],"optimizationBailout":[],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":657,"sizes":{"javascript":657},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/use-outside-click.js","name":"./src/_js/customizer/utils/use-outside-click.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/use-outside-click.js","index":128,"preOrderIndex":128,"index2":123,"postOrderIndex":123,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","issuerName":"./src/_js/customizer/colors/components/source-colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","module":"./src/_js/customizer/colors/components/contextual-menu/index.js","moduleName":"./src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../../utils/use-outside-click","loc":"14:0-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","module":"./src/_js/customizer/colors/components/contextual-menu/index.js","moduleName":"./src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../utils/use-outside-click","loc":"36:2-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../../utils/use-outside-click","loc":"15:0-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../../utils/use-outside-click","loc":"133:2-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-37"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2674,"sizes":{"javascript":2674},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","index":129,"preOrderIndex":129,"index2":342,"postOrderIndex":342,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","issuerName":"./src/_js/customizer/colors/components/source-colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./color-picker","loc":"13:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./color-picker","loc":"167:38-49","moduleId":null,"resolvedModuleId":null}],"usedExports":["ColorPicker"],"providedExports":["ColorPicker"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 15:0-35"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3345,"sizes":{"javascript":3345},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","name":"./src/_js/customizer/colors/components/contextual-menu/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","index":348,"preOrderIndex":348,"index2":345,"postOrderIndex":345,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","issuerName":"./src/_js/customizer/colors/components/source-colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":241,"resolving":131,"restoring":0,"building":110,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":131,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../contextual-menu","loc":"14:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../contextual-menu","loc":"188:39-53","moduleId":null,"resolvedModuleId":null}],"usedExports":["ContextualMenu"],"providedExports":["ContextualMenu"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 15:0-18:32"],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":144,"sizes":{"javascript":144},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/round.js","name":"./src/_js/customizer/fonts/utils/round.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/round.js","index":364,"preOrderIndex":364,"index2":361,"postOrderIndex":361,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","issuerName":"./src/_js/customizer/fonts/utils/callback-filter.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","name":"./src/_js/customizer/fonts/utils/callback-filter.js","profile":{"total":580,"resolving":233,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":233,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":345,"resolving":225,"restoring":0,"building":120,"integration":0,"storing":0,"additionalResolving":225,"additionalIntegration":0,"factory":225,"dependencies":225},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./round","loc":"2:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./round","loc":"57:41-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./round","loc":"97:43-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./round","loc":"3:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./round","loc":"50:32-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./round","loc":"53:32-37","moduleId":null,"resolvedModuleId":null}],"usedExports":["round"],"providedExports":["round"],"optimizationBailout":[],"depth":3},{"type":"module","moduleType":"javascript/auto","layer":null,"size":82,"sizes":{"javascript":82},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","index":133,"preOrderIndex":133,"index2":341,"postOrderIndex":341,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","issuerName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","module":"./src/_js/customizer/colors/components/source-colors/color-picker.js","moduleName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"react-color/es/Sketch","loc":"14:0-49","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","module":"./src/_js/customizer/colors/components/source-colors/color-picker.js","moduleName":"./src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/color-picker.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"react-color/es/Sketch","loc":"38:38-50","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Dependency (harmony side effect evaluation) with side effects at 1:0-50"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":412,"sizes":{"javascript":412},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","name":"./src/_js/customizer/colors/components/contextual-menu/style.scss","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","index":349,"preOrderIndex":349,"index2":344,"postOrderIndex":344,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","issuerName":"./src/_js/customizer/colors/components/contextual-menu/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","name":"./src/_js/customizer/colors/components/contextual-menu/index.js","profile":{"total":241,"resolving":131,"restoring":0,"building":110,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":131,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":7,"resolving":6,"restoring":0,"building":1,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","module":"./src/_js/customizer/colors/components/contextual-menu/index.js","moduleName":"./src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/index.js","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./style.scss","loc":"13:0-22","moduleId":null,"resolvedModuleId":null}],"usedExports":[],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-17"],"depth":4},{"type":"module","moduleType":"javascript/auto","layer":null,"size":4979,"sizes":{"javascript":4979},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","index":134,"preOrderIndex":134,"index2":340,"postOrderIndex":340,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","issuerName":"./node_modules/react-color/es/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","module":"./node_modules/react-color/es/Sketch.js","moduleName":"./node_modules/react-color/es/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","resolvedModule":"./node_modules/react-color/es/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./components/sketch/Sketch","loc":"1:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","module":"./node_modules/react-color/es/Sketch.js","moduleName":"./node_modules/react-color/es/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","resolvedModule":"./node_modules/react-color/es/Sketch.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./components/sketch/Sketch","loc":"2:0-31","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Sketch","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":5},{"type":"module","moduleType":"javascript/auto","layer":null,"size":395,"sizes":{"javascript":395},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","index":218,"preOrderIndex":218,"index2":337,"postOrderIndex":337,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","issuerName":"./node_modules/react-color/es/components/sketch/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../common","loc":"8:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"109:26-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"125:30-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"134:30-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"146:28-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"178:15-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../common","loc":"7:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"95:26-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"105:26-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"117:26-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"129:26-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"141:26-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../common","loc":"7:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","module":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../common","loc":"60:28-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["Alpha","Checkboard","ColorWrap","EditableInput","Hue","Saturation","Swatch"],"providedExports":["Alpha","Checkboard","ColorWrap","EditableInput","Hue","Raised","Saturation","Swatch"],"optimizationBailout":["Dependency (harmony side effect evaluation) with side effects at 1:0-43"],"depth":6},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1218,"sizes":{"javascript":1218},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","index":227,"preOrderIndex":227,"index2":312,"postOrderIndex":312,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","issuerName":"./node_modules/react-color/es/components/sketch/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"lodash-es/merge","loc":"4:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","module":"./node_modules/react-color/es/components/common/Raised.js","moduleName":"./node_modules/react-color/es/components/common/Raised.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","resolvedModule":"./node_modules/react-color/es/components/common/Raised.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash-es/merge","loc":"14:24-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"lodash-es/merge","loc":"6:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash-es/merge","loc":"28:24-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 35:0-37:3"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3555,"sizes":{"javascript":3555},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","index":346,"preOrderIndex":346,"index2":338,"postOrderIndex":338,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","issuerName":"./node_modules/react-color/es/components/sketch/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./SketchFields","loc":"9:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./SketchFields","loc":"150:24-36","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["SketchFields","default"],"optimizationBailout":["Dependency (harmony side effect evaluation) with side effects at 3:0-26"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2282,"sizes":{"javascript":2282},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","name":"./node_modules/react-color/es/components/sketch/SketchPresetColors.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchPresetColors.js","index":347,"preOrderIndex":347,"index2":339,"postOrderIndex":339,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","issuerName":"./node_modules/react-color/es/components/sketch/Sketch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":13,"resolving":8,"restoring":0,"building":5,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./SketchPresetColors","loc":"10:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","module":"./node_modules/react-color/es/components/sketch/Sketch.js","moduleName":"./node_modules/react-color/es/components/sketch/Sketch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","resolvedModule":"./node_modules/react-color/es/components/sketch/Sketch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./SketchPresetColors","loc":"157:24-42","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["SketchPresetColors","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":6},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6082,"sizes":{"javascript":6082},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","name":"./node_modules/react-color/es/components/common/Alpha.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","index":219,"preOrderIndex":219,"index2":213,"postOrderIndex":213,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Alpha","loc":"1:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./Alpha","loc":"1:0-43","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Alpha","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1291,"sizes":{"javascript":1291},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","name":"./node_modules/react-color/es/components/common/Checkboard.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","index":220,"preOrderIndex":220,"index2":211,"postOrderIndex":211,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":14,"resolving":4,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Checkboard","loc":"15:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./Checkboard","loc":"114:30-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Checkboard","loc":"7:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./Checkboard","loc":"63:39-49","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Checkboard","loc":"2:0-53","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./Checkboard","loc":"2:0-53","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Checkboard","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":7163,"sizes":{"javascript":7163},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","name":"./node_modules/react-color/es/components/common/EditableInput.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/EditableInput.js","index":223,"preOrderIndex":223,"index2":214,"postOrderIndex":214,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":19,"resolving":4,"restoring":0,"building":15,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./EditableInput","loc":"3:0-59","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./EditableInput","loc":"3:0-59","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["EditableInput","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-564"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":5796,"sizes":{"javascript":5796},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","name":"./node_modules/react-color/es/components/common/Hue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","index":224,"preOrderIndex":224,"index2":216,"postOrderIndex":216,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":4,"restoring":0,"building":25,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Hue","loc":"4:0-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./Hue","loc":"4:0-39","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Hue","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-564"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2160,"sizes":{"javascript":2160},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","name":"./node_modules/react-color/es/components/common/Raised.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Raised.js","index":226,"preOrderIndex":226,"index2":313,"postOrderIndex":313,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":4,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Raised","loc":"5:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./Raised","loc":"5:0-45","moduleId":null,"resolvedModuleId":null}],"usedExports":[],"providedExports":["Raised","default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 85:0-90:2"],"depth":7},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1040,"sizes":{"javascript":1040},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","index":228,"preOrderIndex":228,"index2":245,"postOrderIndex":245,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","issuerName":"./node_modules/lodash-es/merge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","module":"./node_modules/lodash-es/merge.js","moduleName":"./node_modules/lodash-es/merge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","resolvedModule":"./node_modules/lodash-es/merge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_createAssigner.js","loc":"2:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","module":"./node_modules/lodash-es/merge.js","moduleName":"./node_modules/lodash-es/merge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","resolvedModule":"./node_modules/lodash-es/merge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_createAssigner.js","loc":"35:12-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":7},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1326,"sizes":{"javascript":1326},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","index":257,"preOrderIndex":257,"index2":311,"postOrderIndex":311,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","issuerName":"./node_modules/lodash-es/merge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","module":"./node_modules/lodash-es/merge.js","moduleName":"./node_modules/lodash-es/merge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","resolvedModule":"./node_modules/lodash-es/merge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseMerge.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","module":"./node_modules/lodash-es/merge.js","moduleName":"./node_modules/lodash-es/merge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","resolvedModule":"./node_modules/lodash-es/merge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseMerge.js","loc":"36:2-11","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6337,"sizes":{"javascript":6337},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","name":"./node_modules/react-color/es/components/common/Saturation.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","index":323,"preOrderIndex":323,"index2":322,"postOrderIndex":322,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":35,"resolving":4,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Saturation","loc":"6:0-53","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./Saturation","loc":"6:0-53","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Saturation","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-564"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":4077,"sizes":{"javascript":4077},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","index":332,"preOrderIndex":332,"index2":334,"postOrderIndex":334,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./ColorWrap","loc":"7:0-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./ColorWrap","loc":"7:0-51","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["ColorWrap","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2091,"sizes":{"javascript":2091},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","index":333,"preOrderIndex":333,"index2":333,"postOrderIndex":333,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","issuerName":"./node_modules/react-color/es/components/sketch/SketchFields.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"13:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"25:27-57","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"27:23-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"35:27-57","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"37:23-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"42:33-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"65:28-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"5:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","module":"./node_modules/react-color/es/components/sketch/SketchFields.js","moduleName":"./node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","resolvedModule":"./node_modules/react-color/es/components/sketch/SketchFields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/color","loc":"59:6-22","moduleId":null,"resolvedModuleId":null}],"usedExports":["isValidHex","simpleCheckForValidColor","toState"],"providedExports":["getContrastingColor","isValidHex","isvalidColorString","red","simpleCheckForValidColor","toState"],"optimizationBailout":["Statement (ExportNamedDeclaration) with side effects in source code at 68:0-73:2"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2045,"sizes":{"javascript":2045},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","name":"./node_modules/react-color/es/components/common/Swatch.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","index":344,"preOrderIndex":344,"index2":336,"postOrderIndex":336,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","issuerName":"./node_modules/react-color/es/components/common/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":5,"restoring":0,"building":34,"integration":0,"storing":1,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./Swatch","loc":"8:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","module":"./node_modules/react-color/es/components/common/index.js","moduleName":"./node_modules/react-color/es/components/common/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","resolvedModule":"./node_modules/react-color/es/components/common/index.js","type":"harmony export imported specifier","active":true,"explanation":"","userRequest":"./Swatch","loc":"8:0-45","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["Swatch","default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":7},{"type":"module","moduleType":"javascript/auto","layer":null,"size":972,"sizes":{"javascript":972},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/checkboard.js","name":"./node_modules/react-color/es/helpers/checkboard.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/checkboard.js","index":221,"preOrderIndex":221,"index2":210,"postOrderIndex":210,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","issuerName":"./node_modules/react-color/es/components/common/Checkboard.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","name":"./node_modules/react-color/es/components/common/Checkboard.js","profile":{"total":14,"resolving":4,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":27,"resolving":18,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../helpers/checkboard","loc":"5:0-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","module":"./node_modules/react-color/es/components/common/Checkboard.js","moduleName":"./node_modules/react-color/es/components/common/Checkboard.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Checkboard.js","resolvedModule":"./node_modules/react-color/es/components/common/Checkboard.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/checkboard","loc":"22:29-43","moduleId":null,"resolvedModuleId":null}],"usedExports":["get"],"providedExports":["get","render"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-25"],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1215,"sizes":{"javascript":1215},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/alpha.js","name":"./node_modules/react-color/es/helpers/alpha.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/alpha.js","index":222,"preOrderIndex":222,"index2":212,"postOrderIndex":212,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","issuerName":"./node_modules/react-color/es/components/common/Alpha.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","name":"./node_modules/react-color/es/components/common/Alpha.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":18,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../helpers/alpha","loc":"13:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","module":"./node_modules/react-color/es/components/common/Alpha.js","moduleName":"./node_modules/react-color/es/components/common/Alpha.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Alpha.js","resolvedModule":"./node_modules/react-color/es/components/common/Alpha.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/alpha","loc":"32:19-40","moduleId":null,"resolvedModuleId":null}],"usedExports":["calculateChange"],"providedExports":["calculateChange"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1263,"sizes":{"javascript":1263},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/hue.js","name":"./node_modules/react-color/es/helpers/hue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/hue.js","index":225,"preOrderIndex":225,"index2":215,"postOrderIndex":215,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","issuerName":"./node_modules/react-color/es/components/common/Hue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","name":"./node_modules/react-color/es/components/common/Hue.js","profile":{"total":29,"resolving":4,"restoring":0,"building":25,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../helpers/hue","loc":"11:0-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","module":"./node_modules/react-color/es/components/common/Hue.js","moduleName":"./node_modules/react-color/es/components/common/Hue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Hue.js","resolvedModule":"./node_modules/react-color/es/components/common/Hue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/hue","loc":"28:19-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["calculateChange"],"providedExports":["calculateChange"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":557,"sizes":{"javascript":557},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","index":229,"preOrderIndex":229,"index2":239,"postOrderIndex":239,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","issuerName":"./node_modules/lodash-es/_createAssigner.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","module":"./node_modules/lodash-es/_createAssigner.js","moduleName":"./node_modules/lodash-es/_createAssigner.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","resolvedModule":"./node_modules/lodash-es/_createAssigner.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseRest.js","loc":"1:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","module":"./node_modules/lodash-es/_createAssigner.js","moduleName":"./node_modules/lodash-es/_createAssigner.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","resolvedModule":"./node_modules/lodash-es/_createAssigner.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseRest.js","loc":"12:9-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":731,"sizes":{"javascript":731},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isObject.js","name":"./node_modules/lodash-es/isObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isObject.js","index":237,"preOrderIndex":237,"index2":219,"postOrderIndex":219,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":26,"resolving":5,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":5,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","module":"./node_modules/lodash-es/_baseCreate.js","moduleName":"./node_modules/lodash-es/_baseCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","resolvedModule":"./node_modules/lodash-es/_baseCreate.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","module":"./node_modules/lodash-es/_baseCreate.js","moduleName":"./node_modules/lodash-es/_baseCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","resolvedModule":"./node_modules/lodash-es/_baseCreate.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"17:9-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"3:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"40:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"19:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"5:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"26:8-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"11:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"77:16-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"4:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"17:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"82:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","module":"./node_modules/lodash-es/isFunction.js","moduleName":"./node_modules/lodash-es/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","resolvedModule":"./node_modules/lodash-es/isFunction.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"2:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","module":"./node_modules/lodash-es/isFunction.js","moduleName":"./node_modules/lodash-es/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","resolvedModule":"./node_modules/lodash-es/isFunction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"28:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","module":"./node_modules/lodash-es/throttle.js","moduleName":"./node_modules/lodash-es/throttle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","resolvedModule":"./node_modules/lodash-es/throttle.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"2:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","module":"./node_modules/lodash-es/throttle.js","moduleName":"./node_modules/lodash-es/throttle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","resolvedModule":"./node_modules/lodash-es/throttle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"58:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObject.js","loc":"2:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"50:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObject.js","loc":"52:12-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":875,"sizes":{"javascript":875},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","name":"./node_modules/lodash-es/_isIterateeCall.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","index":252,"preOrderIndex":252,"index2":244,"postOrderIndex":244,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","issuerName":"./node_modules/lodash-es/_createAssigner.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":7,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","module":"./node_modules/lodash-es/_createAssigner.js","moduleName":"./node_modules/lodash-es/_createAssigner.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","resolvedModule":"./node_modules/lodash-es/_createAssigner.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isIterateeCall.js","loc":"2:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","module":"./node_modules/lodash-es/_createAssigner.js","moduleName":"./node_modules/lodash-es/_createAssigner.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","resolvedModule":"./node_modules/lodash-es/_createAssigner.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isIterateeCall.js","loc":"22:17-31","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":591,"sizes":{"javascript":591},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","name":"./node_modules/lodash-es/_baseFor.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","index":258,"preOrderIndex":258,"index2":247,"postOrderIndex":247,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":26,"resolving":5,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":5,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","module":"./node_modules/lodash-es/_baseForOwn.js","moduleName":"./node_modules/lodash-es/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","resolvedModule":"./node_modules/lodash-es/_baseForOwn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseFor.js","loc":"1:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","module":"./node_modules/lodash-es/_baseForOwn.js","moduleName":"./node_modules/lodash-es/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","resolvedModule":"./node_modules/lodash-es/_baseForOwn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseFor.js","loc":"13:19-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseFor.js","loc":"3:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseFor.js","loc":"24:2-9","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 14:0-30"],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":732,"sizes":{"javascript":732},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","index":260,"preOrderIndex":260,"index2":276,"postOrderIndex":276,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Stack.js","loc":"1:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Stack.js","loc":"25:26-31","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 21:0-35"],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":3067,"sizes":{"javascript":3067},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","index":289,"preOrderIndex":289,"index2":310,"postOrderIndex":310,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseMergeDeep.js","loc":"4:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseMergeDeep.js","loc":"27:6-19","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":454,"sizes":{"javascript":454},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_safeGet.js","name":"./node_modules/lodash-es/_safeGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_safeGet.js","index":290,"preOrderIndex":290,"index2":277,"postOrderIndex":277,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":24,"resolving":5,"restoring":0,"building":19,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_safeGet.js","loc":"7:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_safeGet.js","loc":"31:21-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_safeGet.js","loc":"14:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_safeGet.js","loc":"33:17-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_safeGet.js","loc":"34:17-24","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":580,"sizes":{"javascript":580},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","index":291,"preOrderIndex":291,"index2":279,"postOrderIndex":279,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assignMergeValue.js","loc":"2:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assignMergeValue.js","loc":"37:6-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assignMergeValue.js","loc":"1:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assignMergeValue.js","loc":"38:4-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assignMergeValue.js","loc":"91:2-18","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":776,"sizes":{"javascript":776},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","index":315,"preOrderIndex":315,"index2":306,"postOrderIndex":306,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","issuerName":"./node_modules/lodash-es/_baseMerge.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./keysIn.js","loc":"6:0-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","module":"./node_modules/lodash-es/_baseMerge.js","moduleName":"./node_modules/lodash-es/_baseMerge.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","resolvedModule":"./node_modules/lodash-es/_baseMerge.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./keysIn.js","loc":"39:5-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","module":"./node_modules/lodash-es/toPlainObject.js","moduleName":"./node_modules/lodash-es/toPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","resolvedModule":"./node_modules/lodash-es/toPlainObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./keysIn.js","loc":"2:0-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","module":"./node_modules/lodash-es/toPlainObject.js","moduleName":"./node_modules/lodash-es/toPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","resolvedModule":"./node_modules/lodash-es/toPlainObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./keysIn.js","loc":"29:27-33","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":931,"sizes":{"javascript":931},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/saturation.js","name":"./node_modules/react-color/es/helpers/saturation.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/saturation.js","index":324,"preOrderIndex":324,"index2":314,"postOrderIndex":314,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","issuerName":"./node_modules/react-color/es/components/common/Saturation.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","name":"./node_modules/react-color/es/components/common/Saturation.js","profile":{"total":35,"resolving":4,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":31,"resolving":18,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../helpers/saturation","loc":"12:0-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/saturation","loc":"23:89-115","moduleId":null,"resolvedModuleId":null}],"usedExports":["calculateChange"],"providedExports":["calculateChange"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":2707,"sizes":{"javascript":2707},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","name":"./node_modules/lodash-es/throttle.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","index":325,"preOrderIndex":325,"index2":321,"postOrderIndex":321,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","issuerName":"./node_modules/react-color/es/components/common/Saturation.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","name":"./node_modules/react-color/es/components/common/Saturation.js","profile":{"total":35,"resolving":4,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":36,"resolving":22,"restoring":0,"building":14,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":22,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"lodash-es/throttle","loc":"11:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","module":"./node_modules/react-color/es/components/common/Saturation.js","moduleName":"./node_modules/react-color/es/components/common/Saturation.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Saturation.js","resolvedModule":"./node_modules/react-color/es/components/common/Saturation.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash-es/throttle","loc":"37:21-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":6098,"sizes":{"javascript":6098},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","index":326,"preOrderIndex":326,"index2":320,"postOrderIndex":320,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","issuerName":"./node_modules/react-color/es/components/common/ColorWrap.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","module":"./node_modules/lodash-es/throttle.js","moduleName":"./node_modules/lodash-es/throttle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","resolvedModule":"./node_modules/lodash-es/throttle.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./debounce.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","module":"./node_modules/lodash-es/throttle.js","moduleName":"./node_modules/lodash-es/throttle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/throttle.js","resolvedModule":"./node_modules/lodash-es/throttle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./debounce.js","loc":"62:9-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"lodash-es/debounce","loc":"12:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","module":"./node_modules/react-color/es/components/common/ColorWrap.js","moduleName":"./node_modules/react-color/es/components/common/ColorWrap.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","resolvedModule":"./node_modules/react-color/es/components/common/ColorWrap.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash-es/debounce","loc":"44:23-31","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 9:0-10:25"],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1353,"sizes":{"javascript":1353},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","index":335,"preOrderIndex":335,"index2":332,"postOrderIndex":332,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","issuerName":"./node_modules/lodash-es/each.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","module":"./node_modules/lodash-es/each.js","moduleName":"./node_modules/lodash-es/each.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","resolvedModule":"./node_modules/lodash-es/each.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./forEach.js","loc":"1:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","module":"./node_modules/lodash-es/each.js","moduleName":"./node_modules/lodash-es/each.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","resolvedModule":"./node_modules/lodash-es/each.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./forEach.js","loc":"1:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","module":"./node_modules/react-color/es/helpers/color.js","moduleName":"./node_modules/react-color/es/helpers/color.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","resolvedModule":"./node_modules/react-color/es/helpers/color.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"lodash-es/each","loc":"8:2-6","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":8},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3054,"sizes":{"javascript":3054},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","name":"./node_modules/react-color/es/helpers/interaction.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/interaction.js","index":345,"preOrderIndex":345,"index2":335,"postOrderIndex":335,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","issuerName":"./node_modules/react-color/es/components/common/Swatch.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","name":"./node_modules/react-color/es/components/common/Swatch.js","profile":{"total":40,"resolving":5,"restoring":0,"building":34,"integration":0,"storing":1,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":8,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"../../helpers/interaction","loc":"5:0-56","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","module":"./node_modules/react-color/es/components/common/Swatch.js","moduleName":"./node_modules/react-color/es/components/common/Swatch.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/Swatch.js","resolvedModule":"./node_modules/react-color/es/components/common/Swatch.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../helpers/interaction","loc":"70:15-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleFocus"],"providedExports":["handleFocus"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-257"],"depth":8},{"type":"module","moduleType":"javascript/esm","layer":null,"size":390,"sizes":{"javascript":390},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","name":"./node_modules/lodash-es/_setToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","index":230,"preOrderIndex":230,"index2":236,"postOrderIndex":236,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","issuerName":"./node_modules/lodash-es/_baseRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":52,"resolving":13,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_setToString.js","loc":"3:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_setToString.js","loc":"14:9-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 12:0-44"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":991,"sizes":{"javascript":991},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","name":"./node_modules/lodash-es/isFunction.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","index":242,"preOrderIndex":242,"index2":228,"postOrderIndex":228,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isFunction.js","loc":"1:0-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isFunction.js","loc":"43:16-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isFunction.js","loc":"10:0-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isFunction.js","loc":"77:38-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","module":"./node_modules/lodash-es/isArrayLike.js","moduleName":"./node_modules/lodash-es/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","resolvedModule":"./node_modules/lodash-es/isArrayLike.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isFunction.js","loc":"1:0-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","module":"./node_modules/lodash-es/isArrayLike.js","moduleName":"./node_modules/lodash-es/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","resolvedModule":"./node_modules/lodash-es/isArrayLike.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isFunction.js","loc":"30:53-63","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":368,"sizes":{"javascript":368},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/identity.js","name":"./node_modules/lodash-es/identity.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/identity.js","index":248,"preOrderIndex":248,"index2":233,"postOrderIndex":233,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","issuerName":"./node_modules/lodash-es/_baseRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":48,"resolving":13,"restoring":0,"building":35,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./identity.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./identity.js","loc":"14:43-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./identity.js","loc":"3:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./identity.js","loc":"13:40-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","module":"./node_modules/lodash-es/_castFunction.js","moduleName":"./node_modules/lodash-es/_castFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","resolvedModule":"./node_modules/lodash-es/_castFunction.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./identity.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","module":"./node_modules/lodash-es/_castFunction.js","moduleName":"./node_modules/lodash-es/_castFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","resolvedModule":"./node_modules/lodash-es/_castFunction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./identity.js","loc":"11:46-54","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1094,"sizes":{"javascript":1094},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","name":"./node_modules/lodash-es/_overRest.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","index":250,"preOrderIndex":250,"index2":238,"postOrderIndex":238,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","issuerName":"./node_modules/lodash-es/_baseRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":48,"resolving":13,"restoring":0,"building":35,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_overRest.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","module":"./node_modules/lodash-es/_baseRest.js","moduleName":"./node_modules/lodash-es/_baseRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","resolvedModule":"./node_modules/lodash-es/_baseRest.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_overRest.js","loc":"14:21-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-25"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":828,"sizes":{"javascript":828},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","name":"./node_modules/lodash-es/isArrayLike.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","index":253,"preOrderIndex":253,"index2":241,"postOrderIndex":241,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","issuerName":"./node_modules/lodash-es/keysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":47,"resolving":13,"restoring":0,"building":34,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","module":"./node_modules/lodash-es/_createBaseEach.js","moduleName":"./node_modules/lodash-es/_createBaseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","resolvedModule":"./node_modules/lodash-es/_createBaseEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLike.js","loc":"1:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","module":"./node_modules/lodash-es/_createBaseEach.js","moduleName":"./node_modules/lodash-es/_createBaseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","resolvedModule":"./node_modules/lodash-es/_createBaseEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLike.js","loc":"16:9-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLike.js","loc":"2:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLike.js","loc":"22:11-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","module":"./node_modules/lodash-es/isArrayLikeObject.js","moduleName":"./node_modules/lodash-es/isArrayLikeObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","resolvedModule":"./node_modules/lodash-es/isArrayLikeObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLike.js","loc":"1:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","module":"./node_modules/lodash-es/isArrayLikeObject.js","moduleName":"./node_modules/lodash-es/isArrayLikeObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","resolvedModule":"./node_modules/lodash-es/isArrayLikeObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLike.js","loc":"30:32-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLike.js","loc":"3:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLike.js","loc":"34:9-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLike.js","loc":"3:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLike.js","loc":"29:9-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":757,"sizes":{"javascript":757},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIndex.js","name":"./node_modules/lodash-es/_isIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIndex.js","index":255,"preOrderIndex":255,"index2":242,"postOrderIndex":242,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","issuerName":"./node_modules/lodash-es/_isIterateeCall.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","name":"./node_modules/lodash-es/_isIterateeCall.js","profile":{"total":30,"resolving":7,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":53,"resolving":13,"restoring":0,"building":40,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":13,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isIndex.js","loc":"5:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isIndex.js","loc":"41:11-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isIndex.js","loc":"3:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isIndex.js","loc":"22:34-41","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":797,"sizes":{"javascript":797},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/eq.js","name":"./node_modules/lodash-es/eq.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/eq.js","index":256,"preOrderIndex":256,"index2":243,"postOrderIndex":243,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","issuerName":"./node_modules/lodash-es/_assignMergeValue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":17,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","module":"./node_modules/lodash-es/_assignMergeValue.js","moduleName":"./node_modules/lodash-es/_assignMergeValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","resolvedModule":"./node_modules/lodash-es/_assignMergeValue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./eq.js","loc":"2:0-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","module":"./node_modules/lodash-es/_assignMergeValue.js","moduleName":"./node_modules/lodash-es/_assignMergeValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","resolvedModule":"./node_modules/lodash-es/_assignMergeValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./eq.js","loc":"14:31-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","module":"./node_modules/lodash-es/_assignValue.js","moduleName":"./node_modules/lodash-es/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","resolvedModule":"./node_modules/lodash-es/_assignValue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./eq.js","loc":"2:0-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","module":"./node_modules/lodash-es/_assignValue.js","moduleName":"./node_modules/lodash-es/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","resolvedModule":"./node_modules/lodash-es/_assignValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./eq.js","loc":"22:44-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","module":"./node_modules/lodash-es/_assocIndexOf.js","moduleName":"./node_modules/lodash-es/_assocIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","resolvedModule":"./node_modules/lodash-es/_assocIndexOf.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./eq.js","loc":"1:0-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","module":"./node_modules/lodash-es/_assocIndexOf.js","moduleName":"./node_modules/lodash-es/_assocIndexOf.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","resolvedModule":"./node_modules/lodash-es/_assocIndexOf.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./eq.js","loc":"14:8-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./eq.js","loc":"1:0-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","module":"./node_modules/lodash-es/_isIterateeCall.js","moduleName":"./node_modules/lodash-es/_isIterateeCall.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isIterateeCall.js","resolvedModule":"./node_modules/lodash-es/_isIterateeCall.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./eq.js","loc":"25:11-13","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":646,"sizes":{"javascript":646},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseFor.js","name":"./node_modules/lodash-es/_createBaseFor.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseFor.js","index":259,"preOrderIndex":259,"index2":246,"postOrderIndex":246,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","issuerName":"./node_modules/lodash-es/_baseFor.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","name":"./node_modules/lodash-es/_baseFor.js","profile":{"total":26,"resolving":5,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":5,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":48,"resolving":20,"restoring":0,"building":28,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","module":"./node_modules/lodash-es/_baseFor.js","moduleName":"./node_modules/lodash-es/_baseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","resolvedModule":"./node_modules/lodash-es/_baseFor.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_createBaseFor.js","loc":"1:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","module":"./node_modules/lodash-es/_baseFor.js","moduleName":"./node_modules/lodash-es/_baseFor.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseFor.js","resolvedModule":"./node_modules/lodash-es/_baseFor.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_createBaseFor.js","loc":"14:14-27","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":867,"sizes":{"javascript":867},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","index":261,"preOrderIndex":261,"index2":254,"postOrderIndex":254,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_ListCache.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_ListCache.js","loc":"16:33-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_ListCache.js","loc":"2:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_ListCache.js","loc":"16:23-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","module":"./node_modules/lodash-es/_stackClear.js","moduleName":"./node_modules/lodash-es/_stackClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","resolvedModule":"./node_modules/lodash-es/_stackClear.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_ListCache.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","module":"./node_modules/lodash-es/_stackClear.js","moduleName":"./node_modules/lodash-es/_stackClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","resolvedModule":"./node_modules/lodash-es/_stackClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_ListCache.js","loc":"11:22-31","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_ListCache.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_ListCache.js","loc":"20:22-31","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 26:0-43"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":252,"sizes":{"javascript":252},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","name":"./node_modules/lodash-es/_stackClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackClear.js","index":268,"preOrderIndex":268,"index2":255,"postOrderIndex":255,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_stackClear.js","loc":"2:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_stackClear.js","loc":"21:24-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":403,"sizes":{"javascript":403},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackDelete.js","name":"./node_modules/lodash-es/_stackDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackDelete.js","index":269,"preOrderIndex":269,"index2":256,"postOrderIndex":256,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":21,"resolving":12,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_stackDelete.js","loc":"3:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_stackDelete.js","loc":"22:28-39","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":269,"sizes":{"javascript":269},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackGet.js","name":"./node_modules/lodash-es/_stackGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackGet.js","index":270,"preOrderIndex":270,"index2":257,"postOrderIndex":257,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":22,"resolving":12,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_stackGet.js","loc":"4:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_stackGet.js","loc":"23:22-30","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":321,"sizes":{"javascript":321},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackHas.js","name":"./node_modules/lodash-es/_stackHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackHas.js","index":271,"preOrderIndex":271,"index2":258,"postOrderIndex":258,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":26,"resolving":17,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_stackHas.js","loc":"5:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_stackHas.js","loc":"24:22-30","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":851,"sizes":{"javascript":851},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","index":272,"preOrderIndex":272,"index2":275,"postOrderIndex":275,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","issuerName":"./node_modules/lodash-es/_Stack.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_stackSet.js","loc":"6:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","module":"./node_modules/lodash-es/_Stack.js","moduleName":"./node_modules/lodash-es/_Stack.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","resolvedModule":"./node_modules/lodash-es/_Stack.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_stackSet.js","loc":"25:22-30","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":623,"sizes":{"javascript":623},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","index":292,"preOrderIndex":292,"index2":278,"postOrderIndex":278,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","issuerName":"./node_modules/lodash-es/_assignMergeValue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","module":"./node_modules/lodash-es/_assignMergeValue.js","moduleName":"./node_modules/lodash-es/_assignMergeValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","resolvedModule":"./node_modules/lodash-es/_assignMergeValue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"1:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","module":"./node_modules/lodash-es/_assignMergeValue.js","moduleName":"./node_modules/lodash-es/_assignMergeValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","resolvedModule":"./node_modules/lodash-es/_assignMergeValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"16:4-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","module":"./node_modules/lodash-es/_assignValue.js","moduleName":"./node_modules/lodash-es/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","resolvedModule":"./node_modules/lodash-es/_assignValue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"1:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","module":"./node_modules/lodash-es/_assignValue.js","moduleName":"./node_modules/lodash-es/_assignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","resolvedModule":"./node_modules/lodash-es/_assignValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"24:4-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","module":"./node_modules/lodash-es/_copyObject.js","moduleName":"./node_modules/lodash-es/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","resolvedModule":"./node_modules/lodash-es/_copyObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"2:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","module":"./node_modules/lodash-es/_copyObject.js","moduleName":"./node_modules/lodash-es/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","resolvedModule":"./node_modules/lodash-es/_copyObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseAssignValue.js","loc":"32:6-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":486,"sizes":{"javascript":486},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArray.js","name":"./node_modules/lodash-es/isArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArray.js","index":293,"preOrderIndex":293,"index2":280,"postOrderIndex":280,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":13,"restoring":0,"building":30,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":13,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArray.js","loc":"3:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArray.js","loc":"23:14-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArray.js","loc":"7:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArray.js","loc":"48:16-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArray.js","loc":"54:10-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArray.js","loc":"4:0-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArray.js","loc":"37:13-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 24:0-28"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1112,"sizes":{"javascript":1112},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","name":"./node_modules/lodash-es/isBuffer.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","index":294,"preOrderIndex":294,"index2":282,"postOrderIndex":282,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":13,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isBuffer.js","loc":"4:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isBuffer.js","loc":"25:35-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isBuffer.js","loc":"9:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isBuffer.js","loc":"49:27-35","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 5:0-88"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":693,"sizes":{"javascript":693},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","name":"./node_modules/lodash-es/isTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","index":296,"preOrderIndex":296,"index2":287,"postOrderIndex":287,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":45,"resolving":13,"restoring":0,"building":32,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":13,"dependencies":3},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isTypedArray.js","loc":"6:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isTypedArray.js","loc":"26:46-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isTypedArray.js","loc":"13:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isTypedArray.js","loc":"50:39-51","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 6:0-57"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":740,"sizes":{"javascript":740},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","name":"./node_modules/lodash-es/isArrayLikeObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","index":301,"preOrderIndex":301,"index2":288,"postOrderIndex":288,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":13,"restoring":0,"building":30,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArrayLikeObject.js","loc":"8:0-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArrayLikeObject.js","loc":"57:15-32","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":452,"sizes":{"javascript":452},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyArray.js","name":"./node_modules/lodash-es/_copyArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyArray.js","index":302,"preOrderIndex":302,"index2":289,"postOrderIndex":289,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_copyArray.js","loc":"4:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_copyArray.js","loc":"58:19-28","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1054,"sizes":{"javascript":1054},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","name":"./node_modules/lodash-es/_cloneBuffer.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","index":303,"preOrderIndex":303,"index2":290,"postOrderIndex":290,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":12,"restoring":0,"building":28,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_cloneBuffer.js","loc":"2:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_cloneBuffer.js","loc":"62:19-30","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-88"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":525,"sizes":{"javascript":525},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","name":"./node_modules/lodash-es/_cloneTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","index":304,"preOrderIndex":304,"index2":293,"postOrderIndex":293,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":12,"restoring":0,"building":28,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_cloneTypedArray.js","loc":"3:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_cloneTypedArray.js","loc":"66:19-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1648,"sizes":{"javascript":1648},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","name":"./node_modules/lodash-es/isPlainObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","index":307,"preOrderIndex":307,"index2":296,"postOrderIndex":296,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":45,"resolving":13,"restoring":0,"building":32,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isPlainObject.js","loc":"12:0-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isPlainObject.js","loc":"72:13-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 9:0-10:35"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1024,"sizes":{"javascript":1024},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","name":"./node_modules/lodash-es/isArguments.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","index":310,"preOrderIndex":310,"index2":298,"postOrderIndex":298,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":42,"resolving":12,"restoring":0,"building":30,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":12,"dependencies":2},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArguments.js","loc":"2:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArguments.js","loc":"24:24-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isArguments.js","loc":"6:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArguments.js","loc":"72:40-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isArguments.js","loc":"74:10-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 5:0-35"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":742,"sizes":{"javascript":742},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","name":"./node_modules/lodash-es/toPlainObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","index":312,"preOrderIndex":312,"index2":307,"postOrderIndex":307,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./toPlainObject.js","loc":"15:0-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./toPlainObject.js","loc":"75:19-32","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1776,"sizes":{"javascript":1776},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","name":"./node_modules/lodash-es/_arrayLikeKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","index":316,"preOrderIndex":316,"index2":302,"postOrderIndex":302,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","issuerName":"./node_modules/lodash-es/keysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":46,"resolving":13,"restoring":0,"building":33,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_arrayLikeKeys.js","loc":"1:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_arrayLikeKeys.js","loc":"34:31-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_arrayLikeKeys.js","loc":"1:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_arrayLikeKeys.js","loc":"29:31-44","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 9:0-35"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":868,"sizes":{"javascript":868},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","name":"./node_modules/lodash-es/_baseKeysIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","index":318,"preOrderIndex":318,"index2":305,"postOrderIndex":305,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","issuerName":"./node_modules/lodash-es/keysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":47,"resolving":13,"restoring":0,"building":34,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseKeysIn.js","loc":"2:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","module":"./node_modules/lodash-es/keysIn.js","moduleName":"./node_modules/lodash-es/keysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","resolvedModule":"./node_modules/lodash-es/keysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseKeysIn.js","loc":"29:61-71","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 6:0-35"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":484,"sizes":{"javascript":484},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","name":"./node_modules/lodash-es/_initCloneObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","index":321,"preOrderIndex":321,"index2":309,"postOrderIndex":309,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","issuerName":"./node_modules/lodash-es/_baseMergeDeep.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_initCloneObject.js","loc":"5:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","module":"./node_modules/lodash-es/_baseMergeDeep.js","moduleName":"./node_modules/lodash-es/_baseMergeDeep.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","resolvedModule":"./node_modules/lodash-es/_baseMergeDeep.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_initCloneObject.js","loc":"78:19-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1517,"sizes":{"javascript":1517},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","name":"./node_modules/lodash-es/toNumber.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","index":327,"preOrderIndex":327,"index2":318,"postOrderIndex":318,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","issuerName":"./node_modules/lodash-es/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":33,"resolving":9,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./toNumber.js","loc":"3:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./toNumber.js","loc":"81:9-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./toNumber.js","loc":"85:33-41","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 18:0-28"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":518,"sizes":{"javascript":518},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","name":"./node_modules/lodash-es/now.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","index":331,"preOrderIndex":331,"index2":319,"postOrderIndex":319,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","issuerName":"./node_modules/lodash-es/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":34,"resolving":10,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./now.js","loc":"2:0-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./now.js","loc":"130:15-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./now.js","loc":"159:57-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","module":"./node_modules/lodash-es/debounce.js","moduleName":"./node_modules/lodash-es/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","resolvedModule":"./node_modules/lodash-es/debounce.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./now.js","loc":"163:15-18","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":535,"sizes":{"javascript":535},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayEach.js","name":"./node_modules/lodash-es/_arrayEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayEach.js","index":336,"preOrderIndex":336,"index2":324,"postOrderIndex":324,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","issuerName":"./node_modules/lodash-es/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":44,"resolving":6,"restoring":0,"building":38,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_arrayEach.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_arrayEach.js","loc":"37:35-44","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":453,"sizes":{"javascript":453},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","index":337,"preOrderIndex":337,"index2":330,"postOrderIndex":330,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","issuerName":"./node_modules/lodash-es/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseEach.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseEach.js","loc":"37:47-55","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 12:0-42"],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":324,"sizes":{"javascript":324},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","name":"./node_modules/lodash-es/_castFunction.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_castFunction.js","index":343,"preOrderIndex":343,"index2":331,"postOrderIndex":331,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","issuerName":"./node_modules/lodash-es/forEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_castFunction.js","loc":"3:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","module":"./node_modules/lodash-es/forEach.js","moduleName":"./node_modules/lodash-es/forEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","resolvedModule":"./node_modules/lodash-es/forEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_castFunction.js","loc":"38:26-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":9},{"type":"module","moduleType":"javascript/esm","layer":null,"size":939,"sizes":{"javascript":939},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_shortOut.js","name":"./node_modules/lodash-es/_shortOut.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_shortOut.js","index":231,"preOrderIndex":231,"index2":217,"postOrderIndex":217,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","issuerName":"./node_modules/lodash-es/_setToString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","name":"./node_modules/lodash-es/_setToString.js","profile":{"total":52,"resolving":13,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":6,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","module":"./node_modules/lodash-es/_setToString.js","moduleName":"./node_modules/lodash-es/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","resolvedModule":"./node_modules/lodash-es/_setToString.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_shortOut.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","module":"./node_modules/lodash-es/_setToString.js","moduleName":"./node_modules/lodash-es/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","resolvedModule":"./node_modules/lodash-es/_setToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_shortOut.js","loc":"12:18-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 6:0-25"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":639,"sizes":{"javascript":639},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","name":"./node_modules/lodash-es/_baseSetToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","index":232,"preOrderIndex":232,"index2":235,"postOrderIndex":235,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","issuerName":"./node_modules/lodash-es/_setToString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","name":"./node_modules/lodash-es/_setToString.js","profile":{"total":52,"resolving":13,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":6,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","module":"./node_modules/lodash-es/_setToString.js","moduleName":"./node_modules/lodash-es/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","resolvedModule":"./node_modules/lodash-es/_setToString.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseSetToString.js","loc":"1:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","module":"./node_modules/lodash-es/_setToString.js","moduleName":"./node_modules/lodash-es/_setToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","resolvedModule":"./node_modules/lodash-es/_setToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseSetToString.js","loc":"12:27-42","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 13:0-20:2"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":231,"sizes":{"javascript":231},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","index":233,"preOrderIndex":233,"index2":232,"postOrderIndex":232,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","issuerName":"./node_modules/lodash-es/_baseAssignValue.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","module":"./node_modules/lodash-es/_baseAssignValue.js","moduleName":"./node_modules/lodash-es/_baseAssignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","resolvedModule":"./node_modules/lodash-es/_baseAssignValue.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_defineProperty.js","loc":"1:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","module":"./node_modules/lodash-es/_baseAssignValue.js","moduleName":"./node_modules/lodash-es/_baseAssignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","resolvedModule":"./node_modules/lodash-es/_baseAssignValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_defineProperty.js","loc":"13:28-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","module":"./node_modules/lodash-es/_baseAssignValue.js","moduleName":"./node_modules/lodash-es/_baseAssignValue.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","resolvedModule":"./node_modules/lodash-es/_baseAssignValue.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_defineProperty.js","loc":"14:4-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_defineProperty.js","loc":"2:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_defineProperty.js","loc":"13:23-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_defineProperty.js","loc":"14:9-23","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 3:0-9:5"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":298,"sizes":{"javascript":298},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","name":"./node_modules/lodash-es/_root.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","index":240,"preOrderIndex":240,"index2":221,"postOrderIndex":221,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","issuerName":"./node_modules/lodash-es/now.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","name":"./node_modules/lodash-es/now.js","profile":{"total":34,"resolving":10,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","module":"./node_modules/lodash-es/_Map.js","moduleName":"./node_modules/lodash-es/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","resolvedModule":"./node_modules/lodash-es/_Map.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"2:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","module":"./node_modules/lodash-es/_Map.js","moduleName":"./node_modules/lodash-es/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","resolvedModule":"./node_modules/lodash-es/_Map.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"5:20-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","module":"./node_modules/lodash-es/_Symbol.js","moduleName":"./node_modules/lodash-es/_Symbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","resolvedModule":"./node_modules/lodash-es/_Symbol.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","module":"./node_modules/lodash-es/_Symbol.js","moduleName":"./node_modules/lodash-es/_Symbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","resolvedModule":"./node_modules/lodash-es/_Symbol.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"4:13-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","module":"./node_modules/lodash-es/_Uint8Array.js","moduleName":"./node_modules/lodash-es/_Uint8Array.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","resolvedModule":"./node_modules/lodash-es/_Uint8Array.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","module":"./node_modules/lodash-es/_Uint8Array.js","moduleName":"./node_modules/lodash-es/_Uint8Array.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","resolvedModule":"./node_modules/lodash-es/_Uint8Array.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"4:17-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","module":"./node_modules/lodash-es/_cloneBuffer.js","moduleName":"./node_modules/lodash-es/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","resolvedModule":"./node_modules/lodash-es/_cloneBuffer.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","module":"./node_modules/lodash-es/_cloneBuffer.js","moduleName":"./node_modules/lodash-es/_cloneBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneBuffer.js","resolvedModule":"./node_modules/lodash-es/_cloneBuffer.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"13:29-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","module":"./node_modules/lodash-es/_coreJsData.js","moduleName":"./node_modules/lodash-es/_coreJsData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","resolvedModule":"./node_modules/lodash-es/_coreJsData.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","module":"./node_modules/lodash-es/_coreJsData.js","moduleName":"./node_modules/lodash-es/_coreJsData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","resolvedModule":"./node_modules/lodash-es/_coreJsData.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"4:17-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","module":"./node_modules/lodash-es/isBuffer.js","moduleName":"./node_modules/lodash-es/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","resolvedModule":"./node_modules/lodash-es/isBuffer.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","module":"./node_modules/lodash-es/isBuffer.js","moduleName":"./node_modules/lodash-es/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","resolvedModule":"./node_modules/lodash-es/isBuffer.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"14:29-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","module":"./node_modules/lodash-es/now.js","moduleName":"./node_modules/lodash-es/now.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","resolvedModule":"./node_modules/lodash-es/now.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_root.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","module":"./node_modules/lodash-es/now.js","moduleName":"./node_modules/lodash-es/now.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","resolvedModule":"./node_modules/lodash-es/now.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_root.js","loc":"20:9-22","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-81"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":790,"sizes":{"javascript":790},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","name":"./node_modules/lodash-es/_baseGetTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","index":243,"preOrderIndex":243,"index2":227,"postOrderIndex":227,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","issuerName":"./node_modules/lodash-es/isFunction.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","name":"./node_modules/lodash-es/isFunction.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":22,"resolving":10,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","module":"./node_modules/lodash-es/_baseIsArguments.js","moduleName":"./node_modules/lodash-es/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","resolvedModule":"./node_modules/lodash-es/_baseIsArguments.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseGetTag.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","module":"./node_modules/lodash-es/_baseIsArguments.js","moduleName":"./node_modules/lodash-es/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","resolvedModule":"./node_modules/lodash-es/_baseIsArguments.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseGetTag.js","loc":"15:32-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseGetTag.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseGetTag.js","loc":"57:47-57","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","module":"./node_modules/lodash-es/isFunction.js","moduleName":"./node_modules/lodash-es/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","resolvedModule":"./node_modules/lodash-es/isFunction.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseGetTag.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","module":"./node_modules/lodash-es/isFunction.js","moduleName":"./node_modules/lodash-es/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","resolvedModule":"./node_modules/lodash-es/isFunction.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseGetTag.js","loc":"33:12-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseGetTag.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseGetTag.js","loc":"50:30-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","module":"./node_modules/lodash-es/isSymbol.js","moduleName":"./node_modules/lodash-es/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","resolvedModule":"./node_modules/lodash-es/isSymbol.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseGetTag.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","module":"./node_modules/lodash-es/isSymbol.js","moduleName":"./node_modules/lodash-es/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","resolvedModule":"./node_modules/lodash-es/isSymbol.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseGetTag.js","loc":"26:28-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 10:0-61"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":712,"sizes":{"javascript":712},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_apply.js","name":"./node_modules/lodash-es/_apply.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_apply.js","index":251,"preOrderIndex":251,"index2":237,"postOrderIndex":237,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","issuerName":"./node_modules/lodash-es/_overRest.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","name":"./node_modules/lodash-es/_overRest.js","profile":{"total":48,"resolving":13,"restoring":0,"building":35,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":33,"resolving":9,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","module":"./node_modules/lodash-es/_overRest.js","moduleName":"./node_modules/lodash-es/_overRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","resolvedModule":"./node_modules/lodash-es/_overRest.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_apply.js","loc":"1:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","module":"./node_modules/lodash-es/_overRest.js","moduleName":"./node_modules/lodash-es/_overRest.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overRest.js","resolvedModule":"./node_modules/lodash-es/_overRest.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_apply.js","loc":"32:11-16","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":800,"sizes":{"javascript":800},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isLength.js","name":"./node_modules/lodash-es/isLength.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isLength.js","index":254,"preOrderIndex":254,"index2":240,"postOrderIndex":240,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","issuerName":"./node_modules/lodash-es/isArrayLike.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","name":"./node_modules/lodash-es/isArrayLike.js","profile":{"total":47,"resolving":13,"restoring":0,"building":34,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":10,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isLength.js","loc":"2:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isLength.js","loc":"57:4-12","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","module":"./node_modules/lodash-es/isArrayLike.js","moduleName":"./node_modules/lodash-es/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","resolvedModule":"./node_modules/lodash-es/isArrayLike.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isLength.js","loc":"2:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","module":"./node_modules/lodash-es/isArrayLike.js","moduleName":"./node_modules/lodash-es/isArrayLike.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLike.js","resolvedModule":"./node_modules/lodash-es/isArrayLike.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isLength.js","loc":"30:26-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":216,"sizes":{"javascript":216},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheClear.js","name":"./node_modules/lodash-es/_listCacheClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheClear.js","index":262,"preOrderIndex":262,"index2":248,"postOrderIndex":248,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","issuerName":"./node_modules/lodash-es/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":33,"restoring":0,"building":7,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":33,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_listCacheClear.js","loc":"1:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_listCacheClear.js","loc":"26:28-42","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":773,"sizes":{"javascript":773},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","name":"./node_modules/lodash-es/_listCacheDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","index":263,"preOrderIndex":263,"index2":250,"postOrderIndex":250,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","issuerName":"./node_modules/lodash-es/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":40,"resolving":33,"restoring":0,"building":7,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":33,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_listCacheDelete.js","loc":"2:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_listCacheDelete.js","loc":"27:32-47","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-33"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":418,"sizes":{"javascript":418},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","name":"./node_modules/lodash-es/_listCacheGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","index":265,"preOrderIndex":265,"index2":251,"postOrderIndex":251,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","issuerName":"./node_modules/lodash-es/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":38,"resolving":31,"restoring":0,"building":7,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":31,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_listCacheGet.js","loc":"3:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_listCacheGet.js","loc":"28:26-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":401,"sizes":{"javascript":401},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","name":"./node_modules/lodash-es/_listCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","index":266,"preOrderIndex":266,"index2":252,"postOrderIndex":252,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","issuerName":"./node_modules/lodash-es/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":39,"resolving":31,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":31,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_listCacheHas.js","loc":"4:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_listCacheHas.js","loc":"29:26-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":551,"sizes":{"javascript":551},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","name":"./node_modules/lodash-es/_listCacheSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","index":267,"preOrderIndex":267,"index2":253,"postOrderIndex":253,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","issuerName":"./node_modules/lodash-es/_ListCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":39,"resolving":31,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":31,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_listCacheSet.js","loc":"5:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","module":"./node_modules/lodash-es/_ListCache.js","moduleName":"./node_modules/lodash-es/_ListCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","resolvedModule":"./node_modules/lodash-es/_ListCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_listCacheSet.js","loc":"30:26-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":193,"sizes":{"javascript":193},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","name":"./node_modules/lodash-es/_Map.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","index":273,"preOrderIndex":273,"index2":259,"postOrderIndex":259,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","issuerName":"./node_modules/lodash-es/_stackSet.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":32,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Map.js","loc":"3:0-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Map.js","loc":"16:16-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Map.js","loc":"2:0-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Map.js","loc":"22:9-12","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 5:0-33"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":867,"sizes":{"javascript":867},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","index":274,"preOrderIndex":274,"index2":274,"postOrderIndex":274,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","issuerName":"./node_modules/lodash-es/_stackSet.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_MapCache.js","loc":"3:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","module":"./node_modules/lodash-es/_stackSet.js","moduleName":"./node_modules/lodash-es/_stackSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","resolvedModule":"./node_modules/lodash-es/_stackSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_MapCache.js","loc":"27:31-39","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 26:0-41"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":278,"sizes":{"javascript":278},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/stubFalse.js","name":"./node_modules/lodash-es/stubFalse.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/stubFalse.js","index":295,"preOrderIndex":295,"index2":281,"postOrderIndex":281,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","issuerName":"./node_modules/lodash-es/isBuffer.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","name":"./node_modules/lodash-es/isBuffer.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":13,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":25,"resolving":10,"restoring":0,"building":15,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","module":"./node_modules/lodash-es/isBuffer.js","moduleName":"./node_modules/lodash-es/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","resolvedModule":"./node_modules/lodash-es/isBuffer.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./stubFalse.js","loc":"2:0-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","module":"./node_modules/lodash-es/isBuffer.js","moduleName":"./node_modules/lodash-es/isBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isBuffer.js","resolvedModule":"./node_modules/lodash-es/isBuffer.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./stubFalse.js","loc":"36:33-42","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":993,"sizes":{"javascript":993},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","name":"./node_modules/lodash-es/_nodeUtil.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","index":297,"preOrderIndex":297,"index2":283,"postOrderIndex":283,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","issuerName":"./node_modules/lodash-es/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","name":"./node_modules/lodash-es/isTypedArray.js","profile":{"total":45,"resolving":13,"restoring":0,"building":32,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":13,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":10,"restoring":0,"building":19,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nodeUtil.js","loc":"3:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nodeUtil.js","loc":"6:23-31","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nodeUtil.js","loc":"6:35-56","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-88"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":330,"sizes":{"javascript":330},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseUnary.js","name":"./node_modules/lodash-es/_baseUnary.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseUnary.js","index":298,"preOrderIndex":298,"index2":284,"postOrderIndex":284,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","issuerName":"./node_modules/lodash-es/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","name":"./node_modules/lodash-es/isTypedArray.js","profile":{"total":45,"resolving":13,"restoring":0,"building":32,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":13,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":24,"resolving":10,"restoring":0,"building":14,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseUnary.js","loc":"2:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseUnary.js","loc":"25:38-47","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":2220,"sizes":{"javascript":2220},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","name":"./node_modules/lodash-es/_baseIsTypedArray.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","index":299,"preOrderIndex":299,"index2":286,"postOrderIndex":286,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","issuerName":"./node_modules/lodash-es/isTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","name":"./node_modules/lodash-es/isTypedArray.js","profile":{"total":45,"resolving":13,"restoring":0,"building":32,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":13,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":25,"resolving":10,"restoring":0,"building":15,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseIsTypedArray.js","loc":"1:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","module":"./node_modules/lodash-es/isTypedArray.js","moduleName":"./node_modules/lodash-es/isTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isTypedArray.js","resolvedModule":"./node_modules/lodash-es/isTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseIsTypedArray.js","loc":"25:68-84","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 33:0-24"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":612,"sizes":{"javascript":612},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isObjectLike.js","name":"./node_modules/lodash-es/isObjectLike.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isObjectLike.js","index":300,"preOrderIndex":300,"index2":285,"postOrderIndex":285,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","issuerName":"./node_modules/lodash-es/isArrayLikeObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","name":"./node_modules/lodash-es/isArrayLikeObject.js","profile":{"total":43,"resolving":13,"restoring":0,"building":30,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":10,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","module":"./node_modules/lodash-es/_baseIsArguments.js","moduleName":"./node_modules/lodash-es/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","resolvedModule":"./node_modules/lodash-es/_baseIsArguments.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"2:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","module":"./node_modules/lodash-es/_baseIsArguments.js","moduleName":"./node_modules/lodash-es/_baseIsArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","resolvedModule":"./node_modules/lodash-es/_baseIsArguments.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"15:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"3:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","module":"./node_modules/lodash-es/_baseIsTypedArray.js","moduleName":"./node_modules/lodash-es/_baseIsTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsTypedArray.js","resolvedModule":"./node_modules/lodash-es/_baseIsTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"56:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","module":"./node_modules/lodash-es/isArguments.js","moduleName":"./node_modules/lodash-es/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","resolvedModule":"./node_modules/lodash-es/isArguments.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"2:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","module":"./node_modules/lodash-es/isArguments.js","moduleName":"./node_modules/lodash-es/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","resolvedModule":"./node_modules/lodash-es/isArguments.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"32:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","module":"./node_modules/lodash-es/isArrayLikeObject.js","moduleName":"./node_modules/lodash-es/isArrayLikeObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","resolvedModule":"./node_modules/lodash-es/isArrayLikeObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"2:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","module":"./node_modules/lodash-es/isArrayLikeObject.js","moduleName":"./node_modules/lodash-es/isArrayLikeObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArrayLikeObject.js","resolvedModule":"./node_modules/lodash-es/isArrayLikeObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"30:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"3:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"50:7-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","module":"./node_modules/lodash-es/isSymbol.js","moduleName":"./node_modules/lodash-es/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","resolvedModule":"./node_modules/lodash-es/isSymbol.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isObjectLike.js","loc":"2:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","module":"./node_modules/lodash-es/isSymbol.js","moduleName":"./node_modules/lodash-es/isSymbol.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","resolvedModule":"./node_modules/lodash-es/isSymbol.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isObjectLike.js","loc":"26:5-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":447,"sizes":{"javascript":447},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","name":"./node_modules/lodash-es/_cloneArrayBuffer.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","index":305,"preOrderIndex":305,"index2":292,"postOrderIndex":292,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","issuerName":"./node_modules/lodash-es/_cloneTypedArray.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","name":"./node_modules/lodash-es/_cloneTypedArray.js","profile":{"total":40,"resolving":12,"restoring":0,"building":28,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":23,"resolving":9,"restoring":0,"building":14,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","module":"./node_modules/lodash-es/_cloneTypedArray.js","moduleName":"./node_modules/lodash-es/_cloneTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","resolvedModule":"./node_modules/lodash-es/_cloneTypedArray.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_cloneArrayBuffer.js","loc":"1:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","module":"./node_modules/lodash-es/_cloneTypedArray.js","moduleName":"./node_modules/lodash-es/_cloneTypedArray.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","resolvedModule":"./node_modules/lodash-es/_cloneTypedArray.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_cloneArrayBuffer.js","loc":"12:24-40","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":161,"sizes":{"javascript":161},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","name":"./node_modules/lodash-es/_getPrototype.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","index":308,"preOrderIndex":308,"index2":295,"postOrderIndex":295,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","issuerName":"./node_modules/lodash-es/_initCloneObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","name":"./node_modules/lodash-es/_initCloneObject.js","profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":9,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":9,"dependencies":9},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getPrototype.js","loc":"2:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getPrototype.js","loc":"14:17-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getPrototype.js","loc":"2:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","module":"./node_modules/lodash-es/isPlainObject.js","moduleName":"./node_modules/lodash-es/isPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isPlainObject.js","resolvedModule":"./node_modules/lodash-es/isPlainObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getPrototype.js","loc":"53:14-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-58"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":486,"sizes":{"javascript":486},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","name":"./node_modules/lodash-es/_baseIsArguments.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsArguments.js","index":311,"preOrderIndex":311,"index2":297,"postOrderIndex":297,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","issuerName":"./node_modules/lodash-es/isArguments.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","name":"./node_modules/lodash-es/isArguments.js","profile":{"total":42,"resolving":12,"restoring":0,"building":30,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":12,"dependencies":2},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":10,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","module":"./node_modules/lodash-es/isArguments.js","moduleName":"./node_modules/lodash-es/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","resolvedModule":"./node_modules/lodash-es/isArguments.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseIsArguments.js","loc":"1:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","module":"./node_modules/lodash-es/isArguments.js","moduleName":"./node_modules/lodash-es/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","resolvedModule":"./node_modules/lodash-es/isArguments.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseIsArguments.js","loc":"31:18-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","module":"./node_modules/lodash-es/isArguments.js","moduleName":"./node_modules/lodash-es/isArguments.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isArguments.js","resolvedModule":"./node_modules/lodash-es/isArguments.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseIsArguments.js","loc":"31:72-87","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1042,"sizes":{"javascript":1042},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","name":"./node_modules/lodash-es/_copyObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","index":313,"preOrderIndex":313,"index2":300,"postOrderIndex":300,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","issuerName":"./node_modules/lodash-es/toPlainObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","name":"./node_modules/lodash-es/toPlainObject.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":23,"resolving":10,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","module":"./node_modules/lodash-es/toPlainObject.js","moduleName":"./node_modules/lodash-es/toPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","resolvedModule":"./node_modules/lodash-es/toPlainObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_copyObject.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","module":"./node_modules/lodash-es/toPlainObject.js","moduleName":"./node_modules/lodash-es/toPlainObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","resolvedModule":"./node_modules/lodash-es/toPlainObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_copyObject.js","loc":"29:9-19","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":502,"sizes":{"javascript":502},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTimes.js","name":"./node_modules/lodash-es/_baseTimes.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTimes.js","index":317,"preOrderIndex":317,"index2":301,"postOrderIndex":301,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","issuerName":"./node_modules/lodash-es/_arrayLikeKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","name":"./node_modules/lodash-es/_arrayLikeKeys.js","profile":{"total":46,"resolving":13,"restoring":0,"building":33,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":26,"resolving":10,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseTimes.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","module":"./node_modules/lodash-es/_arrayLikeKeys.js","moduleName":"./node_modules/lodash-es/_arrayLikeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_arrayLikeKeys.js","resolvedModule":"./node_modules/lodash-es/_arrayLikeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseTimes.js","loc":"28:29-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":488,"sizes":{"javascript":488},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeysIn.js","name":"./node_modules/lodash-es/_nativeKeysIn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeysIn.js","index":319,"preOrderIndex":319,"index2":303,"postOrderIndex":303,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","issuerName":"./node_modules/lodash-es/_baseKeysIn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keysIn.js","name":"./node_modules/lodash-es/keysIn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":5,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","name":"./node_modules/lodash-es/_baseKeysIn.js","profile":{"total":47,"resolving":13,"restoring":0,"building":34,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":31,"resolving":10,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeKeysIn.js","loc":"3:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeKeysIn.js","loc":"20:11-23","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":478,"sizes":{"javascript":478},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isPrototype.js","name":"./node_modules/lodash-es/_isPrototype.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isPrototype.js","index":320,"preOrderIndex":320,"index2":304,"postOrderIndex":304,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","issuerName":"./node_modules/lodash-es/_initCloneObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","name":"./node_modules/lodash-es/_initCloneObject.js","profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":19,"resolving":9,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","module":"./node_modules/lodash-es/_baseKeys.js","moduleName":"./node_modules/lodash-es/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","resolvedModule":"./node_modules/lodash-es/_baseKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isPrototype.js","loc":"1:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","module":"./node_modules/lodash-es/_baseKeys.js","moduleName":"./node_modules/lodash-es/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","resolvedModule":"./node_modules/lodash-es/_baseKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isPrototype.js","loc":"18:7-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isPrototype.js","loc":"2:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","module":"./node_modules/lodash-es/_baseKeysIn.js","moduleName":"./node_modules/lodash-es/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeysIn.js","resolvedModule":"./node_modules/lodash-es/_baseKeysIn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isPrototype.js","loc":"22:16-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isPrototype.js","loc":"3:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isPrototype.js","loc":"13:54-65","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 2:0-35"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":684,"sizes":{"javascript":684},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","name":"./node_modules/lodash-es/_baseCreate.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseCreate.js","index":322,"preOrderIndex":322,"index2":308,"postOrderIndex":308,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","issuerName":"./node_modules/lodash-es/_initCloneObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","name":"./node_modules/lodash-es/_initCloneObject.js","profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":9,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseCreate.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","module":"./node_modules/lodash-es/_initCloneObject.js","moduleName":"./node_modules/lodash-es/_initCloneObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","resolvedModule":"./node_modules/lodash-es/_initCloneObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseCreate.js","loc":"14:6-16","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-33"],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":680,"sizes":{"javascript":680},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","name":"./node_modules/lodash-es/isSymbol.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isSymbol.js","index":328,"preOrderIndex":328,"index2":315,"postOrderIndex":315,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","issuerName":"./node_modules/lodash-es/toNumber.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","name":"./node_modules/lodash-es/toNumber.js","profile":{"total":33,"resolving":9,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./isSymbol.js","loc":"3:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./isSymbol.js","loc":"47:6-14","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":442,"sizes":{"javascript":442},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","name":"./node_modules/lodash-es/_baseTrim.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","index":329,"preOrderIndex":329,"index2":317,"postOrderIndex":317,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","issuerName":"./node_modules/lodash-es/toNumber.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","name":"./node_modules/lodash-es/toNumber.js","profile":{"total":33,"resolving":9,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseTrim.js","loc":"1:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","module":"./node_modules/lodash-es/toNumber.js","moduleName":"./node_modules/lodash-es/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","resolvedModule":"./node_modules/lodash-es/toNumber.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseTrim.js","loc":"57:10-18","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":884,"sizes":{"javascript":884},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","name":"./node_modules/lodash-es/_createBaseEach.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createBaseEach.js","index":338,"preOrderIndex":338,"index2":325,"postOrderIndex":325,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","issuerName":"./node_modules/lodash-es/_baseEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","module":"./node_modules/lodash-es/_baseEach.js","moduleName":"./node_modules/lodash-es/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","resolvedModule":"./node_modules/lodash-es/_baseEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_createBaseEach.js","loc":"2:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","module":"./node_modules/lodash-es/_baseEach.js","moduleName":"./node_modules/lodash-es/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","resolvedModule":"./node_modules/lodash-es/_baseEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_createBaseEach.js","loc":"12:15-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":454,"sizes":{"javascript":454},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","name":"./node_modules/lodash-es/_baseForOwn.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","index":339,"preOrderIndex":339,"index2":329,"postOrderIndex":329,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","issuerName":"./node_modules/lodash-es/_baseEach.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","module":"./node_modules/lodash-es/_baseEach.js","moduleName":"./node_modules/lodash-es/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","resolvedModule":"./node_modules/lodash-es/_baseEach.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseForOwn.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","module":"./node_modules/lodash-es/_baseEach.js","moduleName":"./node_modules/lodash-es/_baseEach.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","resolvedModule":"./node_modules/lodash-es/_baseEach.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseForOwn.js","loc":"12:30-40","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":10},{"type":"module","moduleType":"javascript/esm","layer":null,"size":481,"sizes":{"javascript":481},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","index":234,"preOrderIndex":234,"index2":231,"postOrderIndex":231,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","issuerName":"./node_modules/lodash-es/_defineProperty.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","module":"./node_modules/lodash-es/_Map.js","moduleName":"./node_modules/lodash-es/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","resolvedModule":"./node_modules/lodash-es/_Map.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getNative.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","module":"./node_modules/lodash-es/_Map.js","moduleName":"./node_modules/lodash-es/_Map.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Map.js","resolvedModule":"./node_modules/lodash-es/_Map.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getNative.js","loc":"5:10-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","module":"./node_modules/lodash-es/_defineProperty.js","moduleName":"./node_modules/lodash-es/_defineProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","resolvedModule":"./node_modules/lodash-es/_defineProperty.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getNative.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","module":"./node_modules/lodash-es/_defineProperty.js","moduleName":"./node_modules/lodash-es/_defineProperty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","resolvedModule":"./node_modules/lodash-es/_defineProperty.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getNative.js","loc":"5:15-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","module":"./node_modules/lodash-es/_nativeCreate.js","moduleName":"./node_modules/lodash-es/_nativeCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","resolvedModule":"./node_modules/lodash-es/_nativeCreate.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getNative.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","module":"./node_modules/lodash-es/_nativeCreate.js","moduleName":"./node_modules/lodash-es/_nativeCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","resolvedModule":"./node_modules/lodash-es/_nativeCreate.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getNative.js","loc":"4:19-28","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":171,"sizes":{"javascript":171},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_freeGlobal.js","name":"./node_modules/lodash-es/_freeGlobal.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_freeGlobal.js","index":241,"preOrderIndex":241,"index2":220,"postOrderIndex":220,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","issuerName":"./node_modules/lodash-es/_root.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/now.js","name":"./node_modules/lodash-es/now.js","profile":{"total":34,"resolving":10,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","name":"./node_modules/lodash-es/_root.js","profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":30,"resolving":5,"restoring":0,"building":25,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":5,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","module":"./node_modules/lodash-es/_nodeUtil.js","moduleName":"./node_modules/lodash-es/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","resolvedModule":"./node_modules/lodash-es/_nodeUtil.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_freeGlobal.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","module":"./node_modules/lodash-es/_nodeUtil.js","moduleName":"./node_modules/lodash-es/_nodeUtil.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nodeUtil.js","resolvedModule":"./node_modules/lodash-es/_nodeUtil.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_freeGlobal.js","loc":"13:35-53","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","module":"./node_modules/lodash-es/_root.js","moduleName":"./node_modules/lodash-es/_root.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","resolvedModule":"./node_modules/lodash-es/_root.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_freeGlobal.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","module":"./node_modules/lodash-es/_root.js","moduleName":"./node_modules/lodash-es/_root.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_root.js","resolvedModule":"./node_modules/lodash-es/_root.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_freeGlobal.js","loc":"7:11-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 2:0-91"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":116,"sizes":{"javascript":116},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","name":"./node_modules/lodash-es/_Symbol.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Symbol.js","index":244,"preOrderIndex":244,"index2":224,"postOrderIndex":224,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","issuerName":"./node_modules/lodash-es/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","name":"./node_modules/lodash-es/isFunction.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","name":"./node_modules/lodash-es/_baseGetTag.js","profile":{"total":22,"resolving":10,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":17,"resolving":6,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":6,"dependencies":1},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Symbol.js","loc":"1:0-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Symbol.js","loc":"10:21-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Symbol.js","loc":"10:30-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","module":"./node_modules/lodash-es/_getRawTag.js","moduleName":"./node_modules/lodash-es/_getRawTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","resolvedModule":"./node_modules/lodash-es/_getRawTag.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Symbol.js","loc":"1:0-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","module":"./node_modules/lodash-es/_getRawTag.js","moduleName":"./node_modules/lodash-es/_getRawTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","resolvedModule":"./node_modules/lodash-es/_getRawTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Symbol.js","loc":"17:21-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","module":"./node_modules/lodash-es/_getRawTag.js","moduleName":"./node_modules/lodash-es/_getRawTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","resolvedModule":"./node_modules/lodash-es/_getRawTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Symbol.js","loc":"17:30-48","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-25"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1137,"sizes":{"javascript":1137},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","name":"./node_modules/lodash-es/_getRawTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getRawTag.js","index":245,"preOrderIndex":245,"index2":225,"postOrderIndex":225,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","issuerName":"./node_modules/lodash-es/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","name":"./node_modules/lodash-es/isFunction.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","name":"./node_modules/lodash-es/_baseGetTag.js","profile":{"total":22,"resolving":10,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":6,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getRawTag.js","loc":"2:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getRawTag.js","loc":"24:6-15","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-35"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":563,"sizes":{"javascript":563},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_objectToString.js","name":"./node_modules/lodash-es/_objectToString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_objectToString.js","index":246,"preOrderIndex":246,"index2":226,"postOrderIndex":226,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","issuerName":"./node_modules/lodash-es/_baseGetTag.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/isFunction.js","name":"./node_modules/lodash-es/isFunction.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":13,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","name":"./node_modules/lodash-es/_baseGetTag.js","profile":{"total":22,"resolving":10,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":10,"dependencies":1},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_objectToString.js","loc":"3:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","module":"./node_modules/lodash-es/_baseGetTag.js","moduleName":"./node_modules/lodash-es/_baseGetTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseGetTag.js","resolvedModule":"./node_modules/lodash-es/_baseGetTag.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_objectToString.js","loc":"25:6-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 2:0-35"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":526,"sizes":{"javascript":526},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/constant.js","name":"./node_modules/lodash-es/constant.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/constant.js","index":249,"preOrderIndex":249,"index2":234,"postOrderIndex":234,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","issuerName":"./node_modules/lodash-es/_baseSetToString.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_createAssigner.js","name":"./node_modules/lodash-es/_createAssigner.js","profile":{"total":38,"resolving":28,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":28,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseRest.js","name":"./node_modules/lodash-es/_baseRest.js","profile":{"total":29,"resolving":7,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_setToString.js","name":"./node_modules/lodash-es/_setToString.js","profile":{"total":52,"resolving":13,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","name":"./node_modules/lodash-es/_baseSetToString.js","profile":{"total":28,"resolving":6,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":6,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./constant.js","loc":"1:0-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","module":"./node_modules/lodash-es/_baseSetToString.js","moduleName":"./node_modules/lodash-es/_baseSetToString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseSetToString.js","resolvedModule":"./node_modules/lodash-es/_baseSetToString.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./constant.js","loc":"17:13-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":485,"sizes":{"javascript":485},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","name":"./node_modules/lodash-es/_assocIndexOf.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assocIndexOf.js","index":264,"preOrderIndex":264,"index2":249,"postOrderIndex":249,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","issuerName":"./node_modules/lodash-es/_listCacheGet.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_ListCache.js","name":"./node_modules/lodash-es/_ListCache.js","profile":{"total":20,"resolving":12,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","name":"./node_modules/lodash-es/_listCacheGet.js","profile":{"total":38,"resolving":31,"restoring":0,"building":7,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":31,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":27,"resolving":18,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":18,"additionalIntegration":0,"factory":18,"dependencies":18},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","module":"./node_modules/lodash-es/_listCacheDelete.js","moduleName":"./node_modules/lodash-es/_listCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","resolvedModule":"./node_modules/lodash-es/_listCacheDelete.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","module":"./node_modules/lodash-es/_listCacheDelete.js","moduleName":"./node_modules/lodash-es/_listCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheDelete.js","resolvedModule":"./node_modules/lodash-es/_listCacheDelete.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"20:14-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","module":"./node_modules/lodash-es/_listCacheGet.js","moduleName":"./node_modules/lodash-es/_listCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","resolvedModule":"./node_modules/lodash-es/_listCacheGet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","module":"./node_modules/lodash-es/_listCacheGet.js","moduleName":"./node_modules/lodash-es/_listCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheGet.js","resolvedModule":"./node_modules/lodash-es/_listCacheGet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"14:14-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","module":"./node_modules/lodash-es/_listCacheHas.js","moduleName":"./node_modules/lodash-es/_listCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","resolvedModule":"./node_modules/lodash-es/_listCacheHas.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","module":"./node_modules/lodash-es/_listCacheHas.js","moduleName":"./node_modules/lodash-es/_listCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheHas.js","resolvedModule":"./node_modules/lodash-es/_listCacheHas.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"13:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","module":"./node_modules/lodash-es/_listCacheSet.js","moduleName":"./node_modules/lodash-es/_listCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","resolvedModule":"./node_modules/lodash-es/_listCacheSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","module":"./node_modules/lodash-es/_listCacheSet.js","moduleName":"./node_modules/lodash-es/_listCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_listCacheSet.js","resolvedModule":"./node_modules/lodash-es/_listCacheSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assocIndexOf.js","loc":"15:14-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":391,"sizes":{"javascript":391},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","index":275,"preOrderIndex":275,"index2":267,"postOrderIndex":267,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","issuerName":"./node_modules/lodash-es/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_mapCacheClear.js","loc":"1:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_mapCacheClear.js","loc":"26:27-40","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":448,"sizes":{"javascript":448},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","name":"./node_modules/lodash-es/_mapCacheDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","index":283,"preOrderIndex":283,"index2":270,"postOrderIndex":270,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","issuerName":"./node_modules/lodash-es/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":27,"resolving":18,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_mapCacheDelete.js","loc":"2:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_mapCacheDelete.js","loc":"27:31-45","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":328,"sizes":{"javascript":328},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","name":"./node_modules/lodash-es/_mapCacheGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","index":286,"preOrderIndex":286,"index2":271,"postOrderIndex":271,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","issuerName":"./node_modules/lodash-es/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_mapCacheGet.js","loc":"3:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_mapCacheGet.js","loc":"28:25-36","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":380,"sizes":{"javascript":380},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","name":"./node_modules/lodash-es/_mapCacheHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","index":287,"preOrderIndex":287,"index2":272,"postOrderIndex":272,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","issuerName":"./node_modules/lodash-es/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_mapCacheHas.js","loc":"4:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_mapCacheHas.js","loc":"29:25-36","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":487,"sizes":{"javascript":487},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","name":"./node_modules/lodash-es/_mapCacheSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","index":288,"preOrderIndex":288,"index2":273,"postOrderIndex":273,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","issuerName":"./node_modules/lodash-es/_MapCache.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":29,"resolving":18,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_mapCacheSet.js","loc":"5:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","module":"./node_modules/lodash-es/_MapCache.js","moduleName":"./node_modules/lodash-es/_MapCache.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","resolvedModule":"./node_modules/lodash-es/_MapCache.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_mapCacheSet.js","loc":"30:25-36","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":128,"sizes":{"javascript":128},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","name":"./node_modules/lodash-es/_Uint8Array.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Uint8Array.js","index":306,"preOrderIndex":306,"index2":291,"postOrderIndex":291,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","issuerName":"./node_modules/lodash-es/_cloneArrayBuffer.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneTypedArray.js","name":"./node_modules/lodash-es/_cloneTypedArray.js","profile":{"total":40,"resolving":12,"restoring":0,"building":28,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","name":"./node_modules/lodash-es/_cloneArrayBuffer.js","profile":{"total":23,"resolving":9,"restoring":0,"building":14,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":7,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","module":"./node_modules/lodash-es/_cloneArrayBuffer.js","moduleName":"./node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModule":"./node_modules/lodash-es/_cloneArrayBuffer.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Uint8Array.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","module":"./node_modules/lodash-es/_cloneArrayBuffer.js","moduleName":"./node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModule":"./node_modules/lodash-es/_cloneArrayBuffer.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Uint8Array.js","loc":"12:6-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","module":"./node_modules/lodash-es/_cloneArrayBuffer.js","moduleName":"./node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_cloneArrayBuffer.js","resolvedModule":"./node_modules/lodash-es/_cloneArrayBuffer.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Uint8Array.js","loc":"12:33-43","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-33"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":380,"sizes":{"javascript":380},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overArg.js","name":"./node_modules/lodash-es/_overArg.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_overArg.js","index":309,"preOrderIndex":309,"index2":294,"postOrderIndex":294,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","issuerName":"./node_modules/lodash-es/_getPrototype.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_initCloneObject.js","name":"./node_modules/lodash-es/_initCloneObject.js","profile":{"total":41,"resolving":12,"restoring":0,"building":29,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":12,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","name":"./node_modules/lodash-es/_getPrototype.js","profile":{"total":18,"resolving":9,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":9,"dependencies":9},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":17,"resolving":6,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","module":"./node_modules/lodash-es/_getPrototype.js","moduleName":"./node_modules/lodash-es/_getPrototype.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","resolvedModule":"./node_modules/lodash-es/_getPrototype.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_overArg.js","loc":"1:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","module":"./node_modules/lodash-es/_getPrototype.js","moduleName":"./node_modules/lodash-es/_getPrototype.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getPrototype.js","resolvedModule":"./node_modules/lodash-es/_getPrototype.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_overArg.js","loc":"4:19-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","module":"./node_modules/lodash-es/_nativeKeys.js","moduleName":"./node_modules/lodash-es/_nativeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","resolvedModule":"./node_modules/lodash-es/_nativeKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_overArg.js","loc":"1:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","module":"./node_modules/lodash-es/_nativeKeys.js","moduleName":"./node_modules/lodash-es/_nativeKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","resolvedModule":"./node_modules/lodash-es/_nativeKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_overArg.js","loc":"4:17-24","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":897,"sizes":{"javascript":897},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","name":"./node_modules/lodash-es/_assignValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignValue.js","index":314,"preOrderIndex":314,"index2":299,"postOrderIndex":299,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","issuerName":"./node_modules/lodash-es/_copyObject.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMergeDeep.js","name":"./node_modules/lodash-es/_baseMergeDeep.js","profile":{"total":29,"resolving":5,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toPlainObject.js","name":"./node_modules/lodash-es/toPlainObject.js","profile":{"total":44,"resolving":13,"restoring":0,"building":31,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":13,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","name":"./node_modules/lodash-es/_copyObject.js","profile":{"total":23,"resolving":10,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":10,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","module":"./node_modules/lodash-es/_copyObject.js","moduleName":"./node_modules/lodash-es/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","resolvedModule":"./node_modules/lodash-es/_copyObject.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_assignValue.js","loc":"1:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","module":"./node_modules/lodash-es/_copyObject.js","moduleName":"./node_modules/lodash-es/_copyObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_copyObject.js","resolvedModule":"./node_modules/lodash-es/_copyObject.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_assignValue.js","loc":"34:6-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 5:0-35"],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":513,"sizes":{"javascript":513},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_trimmedEndIndex.js","name":"./node_modules/lodash-es/_trimmedEndIndex.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_trimmedEndIndex.js","index":330,"preOrderIndex":330,"index2":316,"postOrderIndex":316,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","issuerName":"./node_modules/lodash-es/_baseTrim.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/index.js","name":"./node_modules/react-color/es/components/common/index.js","profile":{"total":23,"resolving":19,"restoring":0,"building":4,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":19,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/common/ColorWrap.js","name":"./node_modules/react-color/es/components/common/ColorWrap.js","profile":{"total":41,"resolving":4,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/debounce.js","name":"./node_modules/lodash-es/debounce.js","profile":{"total":24,"resolving":8,"restoring":0,"building":16,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":8,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/toNumber.js","name":"./node_modules/lodash-es/toNumber.js","profile":{"total":33,"resolving":9,"restoring":0,"building":24,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":9,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","name":"./node_modules/lodash-es/_baseTrim.js","profile":{"total":43,"resolving":6,"restoring":0,"building":37,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","module":"./node_modules/lodash-es/_baseTrim.js","moduleName":"./node_modules/lodash-es/_baseTrim.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","resolvedModule":"./node_modules/lodash-es/_baseTrim.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_trimmedEndIndex.js","loc":"1:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","module":"./node_modules/lodash-es/_baseTrim.js","moduleName":"./node_modules/lodash-es/_baseTrim.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseTrim.js","resolvedModule":"./node_modules/lodash-es/_baseTrim.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_trimmedEndIndex.js","loc":"15:22-37","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":882,"sizes":{"javascript":882},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","name":"./node_modules/lodash-es/keys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","index":340,"preOrderIndex":340,"index2":328,"postOrderIndex":328,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","issuerName":"./node_modules/lodash-es/_baseForOwn.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","name":"./node_modules/lodash-es/_baseForOwn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":17,"resolving":6,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","module":"./node_modules/lodash-es/_baseForOwn.js","moduleName":"./node_modules/lodash-es/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","resolvedModule":"./node_modules/lodash-es/_baseForOwn.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./keys.js","loc":"2:0-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","module":"./node_modules/lodash-es/_baseForOwn.js","moduleName":"./node_modules/lodash-es/_baseForOwn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","resolvedModule":"./node_modules/lodash-es/_baseForOwn.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./keys.js","loc":"13:45-49","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":11},{"type":"module","moduleType":"javascript/esm","layer":null,"size":323,"sizes":{"javascript":323},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getValue.js","name":"./node_modules/lodash-es/_getValue.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getValue.js","index":235,"preOrderIndex":235,"index2":218,"postOrderIndex":218,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","issuerName":"./node_modules/lodash-es/_getNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":20,"resolving":7,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","module":"./node_modules/lodash-es/_getNative.js","moduleName":"./node_modules/lodash-es/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","resolvedModule":"./node_modules/lodash-es/_getNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getValue.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","module":"./node_modules/lodash-es/_getNative.js","moduleName":"./node_modules/lodash-es/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","resolvedModule":"./node_modules/lodash-es/_getNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getValue.js","loc":"13:14-22","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":12},{"type":"module","moduleType":"javascript/esm","layer":null,"size":1415,"sizes":{"javascript":1415},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","name":"./node_modules/lodash-es/_baseIsNative.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","index":236,"preOrderIndex":236,"index2":230,"postOrderIndex":230,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","issuerName":"./node_modules/lodash-es/_getNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","module":"./node_modules/lodash-es/_getNative.js","moduleName":"./node_modules/lodash-es/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","resolvedModule":"./node_modules/lodash-es/_getNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseIsNative.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","module":"./node_modules/lodash-es/_getNative.js","moduleName":"./node_modules/lodash-es/_getNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","resolvedModule":"./node_modules/lodash-es/_getNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseIsNative.js","loc":"14:9-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 16:0-17:35"],"depth":12},{"type":"module","moduleType":"javascript/esm","layer":null,"size":745,"sizes":{"javascript":745},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","index":276,"preOrderIndex":276,"index2":266,"postOrderIndex":266,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","issuerName":"./node_modules/lodash-es/_mapCacheClear.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_Hash.js","loc":"1:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Hash.js","loc":"15:16-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","module":"./node_modules/lodash-es/_mapCacheClear.js","moduleName":"./node_modules/lodash-es/_mapCacheClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","resolvedModule":"./node_modules/lodash-es/_mapCacheClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_Hash.js","loc":"17:18-22","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 26:0-33"],"depth":12},{"type":"module","moduleType":"javascript/esm","layer":null,"size":398,"sizes":{"javascript":398},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","name":"./node_modules/lodash-es/_getMapData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","index":284,"preOrderIndex":284,"index2":269,"postOrderIndex":269,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","issuerName":"./node_modules/lodash-es/_mapCacheDelete.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","name":"./node_modules/lodash-es/_mapCacheDelete.js","profile":{"total":27,"resolving":18,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":7,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":7,"additionalIntegration":0,"factory":7,"dependencies":7},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","module":"./node_modules/lodash-es/_mapCacheDelete.js","moduleName":"./node_modules/lodash-es/_mapCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","resolvedModule":"./node_modules/lodash-es/_mapCacheDelete.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getMapData.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","module":"./node_modules/lodash-es/_mapCacheDelete.js","moduleName":"./node_modules/lodash-es/_mapCacheDelete.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","resolvedModule":"./node_modules/lodash-es/_mapCacheDelete.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getMapData.js","loc":"13:15-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","module":"./node_modules/lodash-es/_mapCacheGet.js","moduleName":"./node_modules/lodash-es/_mapCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","resolvedModule":"./node_modules/lodash-es/_mapCacheGet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getMapData.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","module":"./node_modules/lodash-es/_mapCacheGet.js","moduleName":"./node_modules/lodash-es/_mapCacheGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheGet.js","resolvedModule":"./node_modules/lodash-es/_mapCacheGet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getMapData.js","loc":"13:9-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","module":"./node_modules/lodash-es/_mapCacheHas.js","moduleName":"./node_modules/lodash-es/_mapCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","resolvedModule":"./node_modules/lodash-es/_mapCacheHas.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getMapData.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","module":"./node_modules/lodash-es/_mapCacheHas.js","moduleName":"./node_modules/lodash-es/_mapCacheHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheHas.js","resolvedModule":"./node_modules/lodash-es/_mapCacheHas.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getMapData.js","loc":"13:9-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","module":"./node_modules/lodash-es/_mapCacheSet.js","moduleName":"./node_modules/lodash-es/_mapCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","resolvedModule":"./node_modules/lodash-es/_mapCacheSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_getMapData.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","module":"./node_modules/lodash-es/_mapCacheSet.js","moduleName":"./node_modules/lodash-es/_mapCacheSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheSet.js","resolvedModule":"./node_modules/lodash-es/_mapCacheSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_getMapData.js","loc":"14:13-23","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":12},{"type":"module","moduleType":"javascript/esm","layer":null,"size":774,"sizes":{"javascript":774},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","name":"./node_modules/lodash-es/_baseKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","index":341,"preOrderIndex":341,"index2":327,"postOrderIndex":327,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","issuerName":"./node_modules/lodash-es/keys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","name":"./node_modules/lodash-es/_baseForOwn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","name":"./node_modules/lodash-es/keys.js","profile":{"total":17,"resolving":6,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":18,"resolving":1,"restoring":0,"building":17,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_baseKeys.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","module":"./node_modules/lodash-es/keys.js","moduleName":"./node_modules/lodash-es/keys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","resolvedModule":"./node_modules/lodash-es/keys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_baseKeys.js","loc":"34:55-63","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 5:0-35"],"depth":12},{"type":"module","moduleType":"javascript/esm","layer":null,"size":562,"sizes":{"javascript":562},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","name":"./node_modules/lodash-es/_isMasked.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","index":238,"preOrderIndex":238,"index2":223,"postOrderIndex":223,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","issuerName":"./node_modules/lodash-es/_baseIsNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","name":"./node_modules/lodash-es/_baseIsNative.js","profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":13,"resolving":3,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isMasked.js","loc":"2:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isMasked.js","loc":"40:26-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-7:5"],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":554,"sizes":{"javascript":554},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_toSource.js","name":"./node_modules/lodash-es/_toSource.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_toSource.js","index":247,"preOrderIndex":247,"index2":229,"postOrderIndex":229,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","issuerName":"./node_modules/lodash-es/_baseIsNative.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","name":"./node_modules/lodash-es/_baseIsNative.js","profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":15,"resolving":3,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_toSource.js","loc":"4:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","module":"./node_modules/lodash-es/_baseIsNative.js","moduleName":"./node_modules/lodash-es/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","resolvedModule":"./node_modules/lodash-es/_baseIsNative.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_toSource.js","loc":"44:22-30","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 2:0-35"],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":279,"sizes":{"javascript":279},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","name":"./node_modules/lodash-es/_hashClear.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","index":277,"preOrderIndex":277,"index2":261,"postOrderIndex":261,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","issuerName":"./node_modules/lodash-es/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":8,"resolving":3,"restoring":0,"building":5,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_hashClear.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_hashClear.js","loc":"26:23-32","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":443,"sizes":{"javascript":443},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashDelete.js","name":"./node_modules/lodash-es/_hashDelete.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashDelete.js","index":279,"preOrderIndex":279,"index2":262,"postOrderIndex":262,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","issuerName":"./node_modules/lodash-es/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":12,"resolving":3,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_hashDelete.js","loc":"2:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_hashDelete.js","loc":"27:27-37","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":770,"sizes":{"javascript":770},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","name":"./node_modules/lodash-es/_hashGet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","index":280,"preOrderIndex":280,"index2":263,"postOrderIndex":263,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","issuerName":"./node_modules/lodash-es/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":9,"resolving":3,"restoring":0,"building":6,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_hashGet.js","loc":"3:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_hashGet.js","loc":"28:21-28","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 7:0-35"],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":624,"sizes":{"javascript":624},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","name":"./node_modules/lodash-es/_hashHas.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","index":281,"preOrderIndex":281,"index2":264,"postOrderIndex":264,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","issuerName":"./node_modules/lodash-es/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":11,"resolving":3,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_hashHas.js","loc":"4:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_hashHas.js","loc":"29:21-28","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-35"],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":596,"sizes":{"javascript":596},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","name":"./node_modules/lodash-es/_hashSet.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","index":282,"preOrderIndex":282,"index2":265,"postOrderIndex":265,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","issuerName":"./node_modules/lodash-es/_Hash.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":12,"resolving":3,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_hashSet.js","loc":"5:0-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","module":"./node_modules/lodash-es/_Hash.js","moduleName":"./node_modules/lodash-es/_Hash.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","resolvedModule":"./node_modules/lodash-es/_Hash.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_hashSet.js","loc":"30:21-28","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":428,"sizes":{"javascript":428},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isKeyable.js","name":"./node_modules/lodash-es/_isKeyable.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isKeyable.js","index":285,"preOrderIndex":285,"index2":268,"postOrderIndex":268,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","issuerName":"./node_modules/lodash-es/_getMapData.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheDelete.js","name":"./node_modules/lodash-es/_mapCacheDelete.js","profile":{"total":27,"resolving":18,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","name":"./node_modules/lodash-es/_getMapData.js","profile":{"total":18,"resolving":7,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":7,"additionalIntegration":0,"factory":7,"dependencies":7},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":12,"resolving":3,"restoring":0,"building":9,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","module":"./node_modules/lodash-es/_getMapData.js","moduleName":"./node_modules/lodash-es/_getMapData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","resolvedModule":"./node_modules/lodash-es/_getMapData.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_isKeyable.js","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","module":"./node_modules/lodash-es/_getMapData.js","moduleName":"./node_modules/lodash-es/_getMapData.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getMapData.js","resolvedModule":"./node_modules/lodash-es/_getMapData.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_isKeyable.js","loc":"13:9-18","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":[],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":202,"sizes":{"javascript":202},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","name":"./node_modules/lodash-es/_nativeKeys.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeKeys.js","index":342,"preOrderIndex":342,"index2":326,"postOrderIndex":326,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","issuerName":"./node_modules/lodash-es/_baseKeys.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/SketchFields.js","name":"./node_modules/react-color/es/components/sketch/SketchFields.js","profile":{"total":15,"resolving":7,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/helpers/color.js","name":"./node_modules/react-color/es/helpers/color.js","profile":{"total":17,"resolving":9,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":9,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/each.js","name":"./node_modules/lodash-es/each.js","profile":{"total":47,"resolving":36,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":36,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/forEach.js","name":"./node_modules/lodash-es/forEach.js","profile":{"total":30,"resolving":8,"restoring":0,"building":22,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseEach.js","name":"./node_modules/lodash-es/_baseEach.js","profile":{"total":45,"resolving":6,"restoring":0,"building":39,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseForOwn.js","name":"./node_modules/lodash-es/_baseForOwn.js","profile":{"total":28,"resolving":5,"restoring":0,"building":23,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/keys.js","name":"./node_modules/lodash-es/keys.js","profile":{"total":17,"resolving":6,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":6,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","name":"./node_modules/lodash-es/_baseKeys.js","profile":{"total":18,"resolving":1,"restoring":0,"building":17,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":14,"resolving":1,"restoring":0,"building":13,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","module":"./node_modules/lodash-es/_baseKeys.js","moduleName":"./node_modules/lodash-es/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","resolvedModule":"./node_modules/lodash-es/_baseKeys.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeKeys.js","loc":"2:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","module":"./node_modules/lodash-es/_baseKeys.js","moduleName":"./node_modules/lodash-es/_baseKeys.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseKeys.js","resolvedModule":"./node_modules/lodash-es/_baseKeys.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeKeys.js","loc":"19:11-21","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-46"],"depth":13},{"type":"module","moduleType":"javascript/esm","layer":null,"size":155,"sizes":{"javascript":155},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","name":"./node_modules/lodash-es/_coreJsData.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_coreJsData.js","index":239,"preOrderIndex":239,"index2":222,"postOrderIndex":222,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","issuerName":"./node_modules/lodash-es/_isMasked.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_assignMergeValue.js","name":"./node_modules/lodash-es/_assignMergeValue.js","profile":{"total":25,"resolving":4,"restoring":0,"building":21,"integration":0,"storing":0,"additionalResolving":2,"additionalIntegration":0,"factory":4,"dependencies":2},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseAssignValue.js","name":"./node_modules/lodash-es/_baseAssignValue.js","profile":{"total":27,"resolving":17,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":17,"dependencies":1},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_defineProperty.js","name":"./node_modules/lodash-es/_defineProperty.js","profile":{"total":40,"resolving":32,"restoring":0,"building":8,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_getNative.js","name":"./node_modules/lodash-es/_getNative.js","profile":{"total":30,"resolving":18,"restoring":0,"building":11,"integration":1,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseIsNative.js","name":"./node_modules/lodash-es/_baseIsNative.js","profile":{"total":19,"resolving":7,"restoring":0,"building":12,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","name":"./node_modules/lodash-es/_isMasked.js","profile":{"total":13,"resolving":3,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":6,"resolving":4,"restoring":0,"building":2,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","module":"./node_modules/lodash-es/_isMasked.js","moduleName":"./node_modules/lodash-es/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","resolvedModule":"./node_modules/lodash-es/_isMasked.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_coreJsData.js","loc":"1:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","module":"./node_modules/lodash-es/_isMasked.js","moduleName":"./node_modules/lodash-es/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","resolvedModule":"./node_modules/lodash-es/_isMasked.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_coreJsData.js","loc":"5:26-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","module":"./node_modules/lodash-es/_isMasked.js","moduleName":"./node_modules/lodash-es/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","resolvedModule":"./node_modules/lodash-es/_isMasked.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_coreJsData.js","loc":"5:40-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","module":"./node_modules/lodash-es/_isMasked.js","moduleName":"./node_modules/lodash-es/_isMasked.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_isMasked.js","resolvedModule":"./node_modules/lodash-es/_isMasked.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_coreJsData.js","loc":"5:59-83","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-44"],"depth":14},{"type":"module","moduleType":"javascript/esm","layer":null,"size":185,"sizes":{"javascript":185},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","name":"./node_modules/lodash-es/_nativeCreate.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_nativeCreate.js","index":278,"preOrderIndex":278,"index2":260,"postOrderIndex":260,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","issuerName":"./node_modules/lodash-es/_hashClear.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/color-picker.js","name":"./src/_js/customizer/colors/components/source-colors/color-picker.js","profile":{"total":120,"resolving":20,"restoring":0,"building":100,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":20,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/Sketch.js","name":"./node_modules/react-color/es/Sketch.js","profile":{"total":217,"resolving":127,"restoring":0,"building":90,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":127,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/react-color/es/components/sketch/Sketch.js","name":"./node_modules/react-color/es/components/sketch/Sketch.js","profile":{"total":64,"resolving":21,"restoring":0,"building":43,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":21,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/merge.js","name":"./node_modules/lodash-es/merge.js","profile":{"total":39,"resolving":29,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":13,"additionalIntegration":0,"factory":29,"dependencies":13},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_baseMerge.js","name":"./node_modules/lodash-es/_baseMerge.js","profile":{"total":46,"resolving":26,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":26,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Stack.js","name":"./node_modules/lodash-es/_Stack.js","profile":{"total":24,"resolving":4,"restoring":0,"building":20,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":4,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_stackSet.js","name":"./node_modules/lodash-es/_stackSet.js","profile":{"total":28,"resolving":17,"restoring":0,"building":11,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":17,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_MapCache.js","name":"./node_modules/lodash-es/_MapCache.js","profile":{"total":42,"resolving":32,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":32,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_mapCacheClear.js","name":"./node_modules/lodash-es/_mapCacheClear.js","profile":{"total":28,"resolving":18,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":18,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_Hash.js","name":"./node_modules/lodash-es/_Hash.js","profile":{"total":17,"resolving":7,"restoring":0,"building":10,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","name":"./node_modules/lodash-es/_hashClear.js","profile":{"total":8,"resolving":3,"restoring":0,"building":5,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":6,"resolving":4,"restoring":0,"building":2,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":4,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","module":"./node_modules/lodash-es/_hashClear.js","moduleName":"./node_modules/lodash-es/_hashClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","resolvedModule":"./node_modules/lodash-es/_hashClear.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeCreate.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","module":"./node_modules/lodash-es/_hashClear.js","moduleName":"./node_modules/lodash-es/_hashClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","resolvedModule":"./node_modules/lodash-es/_hashClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeCreate.js","loc":"11:18-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","module":"./node_modules/lodash-es/_hashClear.js","moduleName":"./node_modules/lodash-es/_hashClear.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashClear.js","resolvedModule":"./node_modules/lodash-es/_hashClear.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeCreate.js","loc":"11:33-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","module":"./node_modules/lodash-es/_hashGet.js","moduleName":"./node_modules/lodash-es/_hashGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","resolvedModule":"./node_modules/lodash-es/_hashGet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeCreate.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","module":"./node_modules/lodash-es/_hashGet.js","moduleName":"./node_modules/lodash-es/_hashGet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashGet.js","resolvedModule":"./node_modules/lodash-es/_hashGet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeCreate.js","loc":"23:6-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","module":"./node_modules/lodash-es/_hashHas.js","moduleName":"./node_modules/lodash-es/_hashHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","resolvedModule":"./node_modules/lodash-es/_hashHas.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeCreate.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","module":"./node_modules/lodash-es/_hashHas.js","moduleName":"./node_modules/lodash-es/_hashHas.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashHas.js","resolvedModule":"./node_modules/lodash-es/_hashHas.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeCreate.js","loc":"20:9-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","module":"./node_modules/lodash-es/_hashSet.js","moduleName":"./node_modules/lodash-es/_hashSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","resolvedModule":"./node_modules/lodash-es/_hashSet.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./_nativeCreate.js","loc":"1:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","module":"./node_modules/lodash-es/_hashSet.js","moduleName":"./node_modules/lodash-es/_hashSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash-es/_hashSet.js","resolvedModule":"./node_modules/lodash-es/_hashSet.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./_nativeCreate.js","loc":"19:15-27","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-47"],"depth":14}]},{"type":"module","moduleType":"javascript/esm","layer":null,"size":28466,"sizes":{"javascript":28466},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","name":"./src/_js/customizer-preview/index.js + 2 modules","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","index":369,"preOrderIndex":369,"index2":388,"postOrderIndex":388,"cacheable":true,"optional":false,"orphan":false,"failed":false,"errors":0,"warnings":0,"id":2961,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer-preview/index.js","loc":"customizerPreview","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer-preview/index.js","loc":"customizerPreview.min","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null}],"usedExports":true,"providedExports":["default"],"optimizationBailout":["ModuleConcatenation bailout: Cannot concat with ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss: Module uses module.id","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/debounce.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/each.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/find.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/has.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/includes.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/isEmpty.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/isNumber.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/isString.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with ./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js: Module is not an ECMAScript module","ModuleConcatenation bailout: Cannot concat with external \"jQuery\": Module is not in strict mode"],"depth":0,"modules":[{"type":"module","moduleType":"javascript/auto","layer":null,"size":5636,"sizes":{"javascript":5636},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","index":369,"preOrderIndex":369,"index2":388,"postOrderIndex":388,"cacheable":true,"optional":false,"orphan":false,"issuer":null,"issuerName":null,"issuerPath":null,"failed":false,"errors":0,"warnings":0,"profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[],"usedExports":true,"providedExports":["default"],"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 14:0-23"],"depth":0},{"type":"module","moduleType":"javascript/auto","layer":null,"size":385,"sizes":{"javascript":385},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./src/_js/customizer-preview/style.scss","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","index":370,"preOrderIndex":370,"index2":370,"postOrderIndex":370,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":352,"resolving":326,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":326,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./style.scss","loc":"11:0-22","moduleId":null,"resolvedModuleId":null}],"usedExports":[],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-17"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":22445,"sizes":{"javascript":22445},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","index":372,"preOrderIndex":372,"index2":387,"postOrderIndex":387,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"13:0-89","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"112:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"113:23-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"114:15-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["getFontFieldCSSCode","getFontFieldCSSValue","maybeLoadFontFamily"],"providedExports":["getFieldUnit","getFontFieldCSSCode","getFontFieldCSSValue","maybeLoadFontFamily"],"optimizationBailout":[],"depth":1}]},{"type":"module","moduleType":"javascript/auto","layer":null,"size":10030,"sizes":{"javascript":10030},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-search/index.js","name":"./src/_js/customizer-search/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-search/index.js","index":389,"preOrderIndex":389,"index2":389,"postOrderIndex":389,"cacheable":true,"optional":false,"orphan":false,"issuer":null,"issuerName":null,"issuerPath":null,"failed":false,"errors":0,"warnings":0,"profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":5785,"issuerId":null,"chunks":[354,597],"assets":[],"reasons":[{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer-search/index.js","loc":"customizerSearch","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/customizer-search/index.js","loc":"customizerSearch.min","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null}],"usedExports":true,"providedExports":null,"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 8:0-62","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":0},{"type":"module","moduleType":"javascript/auto","layer":null,"size":4344,"sizes":{"javascript":4344},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","name":"./src/_js/dark-mode/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","index":390,"preOrderIndex":390,"index2":390,"postOrderIndex":390,"cacheable":true,"optional":false,"orphan":false,"issuer":null,"issuerName":null,"issuerPath":null,"failed":false,"errors":0,"warnings":0,"profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":4299,"issuerId":null,"chunks":[81,628],"assets":[],"reasons":[{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/dark-mode/index.js","loc":"darkMode","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/dark-mode/index.js","loc":"darkMode.min","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null}],"usedExports":true,"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 13:0-22","ModuleConcatenation bailout: Cannot concat with external \"jQuery\": Module is not in strict mode"],"depth":0},{"type":"module","moduleType":"javascript/auto","layer":null,"size":924,"sizes":{"javascript":924},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/settings/index.js","name":"./src/_js/settings/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/settings/index.js","index":391,"preOrderIndex":391,"index2":391,"postOrderIndex":391,"cacheable":true,"optional":false,"orphan":false,"issuer":null,"issuerName":null,"issuerPath":null,"failed":false,"errors":0,"warnings":0,"profile":{"total":866,"resolving":36,"restoring":0,"building":830,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":7938,"issuerId":null,"chunks":[570,571],"assets":[],"reasons":[{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/settings/index.js","loc":"settings","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":"entry","active":true,"explanation":"","userRequest":"./src/_js/settings/index.js","loc":"settings.min","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":null,"module":null,"moduleName":null,"resolvedModuleIdentifier":null,"resolvedModule":null,"type":null,"active":true,"explanation":"used as library export","userRequest":null,"moduleId":null,"resolvedModuleId":null}],"usedExports":true,"providedExports":null,"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 1:0-32:11","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":0},{"type":"module","moduleType":"javascript/dynamic","layer":null,"size":42,"sizes":{"javascript":42},"built":true,"codeGenerated":true,"cached":false,"identifier":"external \"jQuery\"","name":"external \"jQuery\"","nameForCondition":null,"index":1,"preOrderIndex":1,"index2":0,"postOrderIndex":0,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3609,"issuerId":null,"chunks":[81,104,290,527,628,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"12:0-23","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"33:6-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:6-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"11:0-23","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"158:29-37","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"247:2-8","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"11:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"158:29-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"247:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"5:25-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"25:27-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"35:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"43:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"44:25-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"59:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"72:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"82:4-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"86:8-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"101:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"111:4-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"10:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"12:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:34-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:29-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:29-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","module":"./src/_js/customizer/fields/color-select/index.js","moduleName":"./src/_js/customizer/fields/color-select/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"37:13-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"5:23-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","module":"./src/_js/customizer/fields/range/index.js","moduleName":"./src/_js/customizer/fields/range/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"31:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","module":"./src/_js/customizer/fields/tabs/index.js","moduleName":"./src/_js/customizer/fields/tabs/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"13:2-33","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"20:2-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"27:11-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"27:24-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"68:8-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"69:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"81:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"82:33-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"86:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"87:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"95:8-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"102:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"103:33-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"107:10-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"108:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"115:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"116:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"119:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","module":"./src/_js/customizer/folding-fields.js","moduleName":"./src/_js/customizer/folding-fields.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"145:8-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:22-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"7:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"9:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"25:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"35:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","module":"./src/_js/customizer/font-palettes/index.js","moduleName":"./src/_js/customizer/font-palettes/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"39:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"2:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"9:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"11:21-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"62:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"75:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:27-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","module":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","moduleName":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"10:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:20-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:18-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"24:19-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:18-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","module":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","moduleName":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","module":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","moduleName":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"57:17-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","module":"./src/_js/customizer/fonts/utils/update-font-head-title.js","moduleName":"./src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","module":"./src/_js/customizer/fonts/utils/update-font-head-title.js","moduleName":"./src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","module":"./src/_js/customizer/fonts/utils/update-variant-field.js","moduleName":"./src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","module":"./src/_js/customizer/fonts/utils/update-variant-field.js","moduleName":"./src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"40:2-8","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"5:25-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"25:27-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"35:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"43:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"44:25-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"59:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"72:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"82:4-10","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"86:8-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"101:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"111:4-10","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"10:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"12:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:34-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:29-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:29-30","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","resolvedModule":"./src/_js/customizer/fields/color-select/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"37:13-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"5:23-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","resolvedModule":"./src/_js/customizer/fields/range/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"31:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","resolvedModule":"./src/_js/customizer/fields/tabs/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"13:2-33","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"20:2-35","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"27:11-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"27:24-44","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"68:8-9","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"69:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"81:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"82:33-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"86:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"87:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"95:8-9","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"102:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"103:33-34","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"107:10-11","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"108:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"115:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"116:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"119:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","resolvedModule":"./src/_js/customizer/folding-fields.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"145:8-14","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"4:22-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"7:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"9:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"25:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"35:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","resolvedModule":"./src/_js/customizer/font-palettes/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"39:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"2:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"9:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"11:21-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"62:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"75:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"3:27-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","resolvedModule":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"10:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"18:20-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:18-26","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"24:19-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"34:18-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"57:17-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-font-head-title.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"17:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","resolvedModule":"./src/_js/customizer/fonts/utils/update-variant-field.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"40:2-8","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"26:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"6:4-5","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:2-3","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:16-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:23-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"1:0-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"6:4-5","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"8:2-3","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"14:16-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","module":"./src/_js/customizer/scale-preview.js","moduleName":"./src/_js/customizer/scale-preview.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","resolvedModule":"./src/_js/customizer/scale-preview.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"15:23-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"jquery","loc":"9:0-23","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"13:12-13","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"21:20-21","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"22:17-18","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"23:31-32","moduleId":4299,"resolvedModuleId":4299},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","module":"./src/_js/dark-mode/index.js","moduleName":"./src/_js/dark-mode/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/dark-mode/index.js","resolvedModule":"./src/_js/dark-mode/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"jquery","loc":"44:6-7","moduleId":4299,"resolvedModuleId":4299}],"usedExports":true,"providedExports":null,"optimizationBailout":["ModuleConcatenation bailout: Module is not in strict mode"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2325,"sizes":{"javascript":2325},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","index":2,"preOrderIndex":2,"index2":101,"postOrderIndex":101,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../global-service","loc":"5:0-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"33:17-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"36:2-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"37:2-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"38:2-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"44:33-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"48:27-57","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../global-service","loc":"3:0-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../global-service","loc":"5:0-73","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"96:2-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"99:6-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"100:28-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../global-service","loc":"111:25-36","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./global-service","loc":"5:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./global-service","loc":"13:2-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./global-service","loc":"14:17-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./global-service","loc":"16:2-35","moduleId":null,"resolvedModuleId":null}],"usedExports":["bindConnectedFields","getCallback","getSetting","getSettingConfig","getSettings","loadSettings","setCallback","setSettings","unbindConnectedFields"],"providedExports":["bindConnectedFields","deleteCallbacks","getCallback","getCallbacks","getSetting","getSettingConfig","getSettings","loadSettings","setCallback","setSetting","setSettings","unbindConnectedFields"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 3:0-19"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3700,"sizes":{"javascript":3700},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","name":"./src/_js/customizer/create-reset-buttons.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","index":103,"preOrderIndex":103,"index2":103,"postOrderIndex":103,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":251,"resolving":8,"restoring":0,"building":243,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./create-reset-buttons","loc":"11:0-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./create-reset-buttons","loc":"17:2-20","moduleId":null,"resolvedModuleId":null}],"usedExports":["createResetButtons"],"providedExports":["createResetButtons"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2273,"sizes":{"javascript":2273},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","name":"./src/_js/customizer/fields/range/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/range/index.js","index":105,"preOrderIndex":105,"index2":104,"postOrderIndex":104,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":552,"resolving":255,"restoring":0,"building":297,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":255,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fields/range","loc":"7:0-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./fields/range","loc":"18:2-19","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleRangeFields"],"providedExports":["handleRangeFields"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2003,"sizes":{"javascript":2003},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","name":"./src/_js/customizer/fields/color-select/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/color-select/index.js","index":106,"preOrderIndex":106,"index2":105,"postOrderIndex":105,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":552,"resolving":255,"restoring":0,"building":297,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":255,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fields/color-select","loc":"6:0-64","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./fields/color-select","loc":"19:2-25","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleColorSelectFields"],"providedExports":["convertToColorSelect","handleColorSelectFields"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":873,"sizes":{"javascript":873},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","name":"./src/_js/customizer/fields/tabs/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fields/tabs/index.js","index":107,"preOrderIndex":107,"index2":106,"postOrderIndex":106,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":552,"resolving":255,"restoring":0,"building":297,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":255,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fields/tabs","loc":"8:0-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./fields/tabs","loc":"20:2-12","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleTabs"],"providedExports":["handleTabs"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":4966,"sizes":{"javascript":4966},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","name":"./src/_js/customizer/folding-fields.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/folding-fields.js","index":108,"preOrderIndex":108,"index2":107,"postOrderIndex":107,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":99,"resolving":7,"restoring":0,"building":92,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./folding-fields","loc":"9:0-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./folding-fields","loc":"23:4-23","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleFoldingFields"],"providedExports":["handleFoldingFields"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3289,"sizes":{"javascript":3289},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","name":"./src/_js/customizer/colors/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","index":109,"preOrderIndex":109,"index2":350,"postOrderIndex":350,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":351,"resolving":99,"restoring":0,"building":252,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":99,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./colors","loc":"2:0-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./colors","loc":"27:2-18","moduleId":null,"resolvedModuleId":null}],"usedExports":["initializeColors"],"providedExports":["initializeColors"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6100,"sizes":{"javascript":6100},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","index":110,"preOrderIndex":110,"index2":112,"postOrderIndex":112,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"68:21-30","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"15:19-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"94:28-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"15:19-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"1:0-40","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/debounce","loc":"94:28-37","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"191:0-14","moduleId":3279,"resolvedModuleId":3279}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 191:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":4726,"sizes":{"javascript":4726},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","index":116,"preOrderIndex":116,"index2":347,"postOrderIndex":347,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","module":"./src/_js/customizer/colors/color-palette-builder/index.js","moduleName":"./src/_js/customizer/colors/color-palette-builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","resolvedModule":"./src/_js/customizer/colors/color-palette-builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../components/builder","loc":"1:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","module":"./src/_js/customizer/colors/color-palette-builder/index.js","moduleName":"./src/_js/customizer/colors/color-palette-builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","resolvedModule":"./src/_js/customizer/colors/color-palette-builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../components/builder","loc":"15:54-61","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./colors/components/builder","loc":"34:0-65","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./colors/components/builder","loc":"34:0-65","moduleId":null,"resolvedModuleId":null}],"usedExports":["Builder"],"providedExports":["Builder","addAutoPalettes","getBestPositionInPalette","getCSSFromPalettes","getColorVariables","getColorsFromInputValue","getFunctionalColors","getInitialColorVaraibles","getPalettesFromColors","getSourceIndex","getValueFromColors","getVariablesCSS","mapAddSourceIndex","mapAddTextColors","mapColorToPalette","mapCorrectLightness","mapInterpolateSource","mapSanitizePalettes","mapUseSource"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 18:0-20:36"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":16020,"sizes":{"javascript":16020},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","name":"./src/_js/customizer/colors/components/builder/utils.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","index":117,"preOrderIndex":117,"index2":116,"postOrderIndex":116,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","issuerName":"./src/_js/customizer/colors/components/builder/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":804,"resolving":364,"restoring":0,"building":440,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":364,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"15:0-113","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"17:0-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./utils","loc":"17:0-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"28:27-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"58:14-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"72:22-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"75:16-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"83:17-35","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./colors/components/builder","loc":"34:0-65","moduleId":null,"resolvedModuleId":null}],"usedExports":["getCSSFromPalettes","getColorsFromInputValue","getPalettesFromColors","getValueFromColors"],"providedExports":["addAutoPalettes","getBestPositionInPalette","getCSSFromPalettes","getColorVariables","getColorsFromInputValue","getFunctionalColors","getInitialColorVaraibles","getPalettesFromColors","getSourceIndex","getValueFromColors","getVariablesCSS","mapAddSourceIndex","mapAddTextColors","mapColorToPalette","mapCorrectLightness","mapInterpolateSource","mapSanitizePalettes","mapUseSource"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":5030,"sizes":{"javascript":5030},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","name":"./src/_js/customizer/fonts/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","index":352,"preOrderIndex":352,"index2":364,"postOrderIndex":364,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":352,"resolving":100,"restoring":0,"building":252,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":100,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fonts","loc":"3:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./fonts","loc":"28:2-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["initializeFonts"],"providedExports":["initializeFonts"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 94:0-114:7"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1100,"sizes":{"javascript":1100},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","index":355,"preOrderIndex":355,"index2":352,"postOrderIndex":352,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"4:0-198","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"15:2-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"37:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"39:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"41:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"65:23-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"67:2-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"69:2-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"77:4-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"77:30-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"83:18-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"87:11-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"88:8-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./utils","loc":"105:31-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./index","loc":"2:0-68","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./index","loc":"22:16-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./index","loc":"23:18-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"27:2-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./index","loc":"2:0-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"12:6-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"17:2-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"76:2-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./index","loc":"2:0-82","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"12:6-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"12:44-66","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"17:2-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"46:18-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"60:25-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"./index","loc":"79:2-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null}],"usedExports":["getSettingID","getWrapper"],"providedExports":["convertFontVariantToFVD","determineFontType","fontsService","getCallbackFilter","getFontDetails","getSettingID","getWrapper","handleFontPopupToggle","initSubfield","loadFontValue","selfUpdateValue","standardizeNumericalValue","updateFontHeadTitle","updateVariantField"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":872,"sizes":{"javascript":872},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","name":"./src/_js/customizer/fonts/utils/get-font-details.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","index":359,"preOrderIndex":359,"index2":356,"postOrderIndex":356,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":582,"resolving":235,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":235,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"65:23-37","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./get-font-details","loc":"4:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./get-font-details","loc":"4:0-52","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"60:25-39","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null}],"usedExports":["getFontDetails"],"providedExports":["getFontDetails"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":632,"sizes":{"javascript":632},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/determine-font-type.js","name":"./src/_js/customizer/fonts/utils/determine-font-type.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/determine-font-type.js","index":360,"preOrderIndex":360,"index2":355,"postOrderIndex":355,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":581,"resolving":234,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":234,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","module":"./src/_js/customizer/fonts/utils/get-font-details.js","moduleName":"./src/_js/customizer/fonts/utils/get-font-details.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","resolvedModule":"./src/_js/customizer/fonts/utils/get-font-details.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./determine-font-type","loc":"1:0-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","module":"./src/_js/customizer/fonts/utils/get-font-details.js","moduleName":"./src/_js/customizer/fonts/utils/get-font-details.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/get-font-details.js","resolvedModule":"./src/_js/customizer/fonts/utils/get-font-details.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./determine-font-type","loc":"7:15-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./determine-font-type","loc":"3:0-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./determine-font-type","loc":"3:0-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null}],"usedExports":["determineFontType"],"providedExports":["determineFontType"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1433,"sizes":{"javascript":1433},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","name":"./src/_js/customizer/font-palettes/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/font-palettes/index.js","index":366,"preOrderIndex":366,"index2":365,"postOrderIndex":365,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":366,"resolving":251,"restoring":0,"building":115,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":251,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./font-palettes","loc":"4:0-57","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./font-palettes","loc":"29:2-24","moduleId":null,"resolvedModuleId":null}],"usedExports":["initializeFontPalettes"],"providedExports":["initializeFontPalettes"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1473,"sizes":{"javascript":1473},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","name":"./src/_js/customizer/scale-preview.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/scale-preview.js","index":367,"preOrderIndex":367,"index2":366,"postOrderIndex":366,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","issuerName":"./src/_js/customizer/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":251,"resolving":7,"restoring":0,"building":244,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":7,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./scale-preview","loc":"10:0-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./scale-preview","loc":"30:2-14","moduleId":null,"resolvedModuleId":null}],"usedExports":["scalePreview"],"providedExports":["scalePreview"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1331,"sizes":{"javascript":1331},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/convert-font-variant.js","name":"./src/_js/customizer/fonts/utils/convert-font-variant.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/convert-font-variant.js","index":368,"preOrderIndex":368,"index2":367,"postOrderIndex":367,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":580,"resolving":233,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":233,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./convert-font-variant","loc":"2:0-65","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./convert-font-variant","loc":"2:0-65","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","module":"./src/_js/customizer/index.js","moduleName":"./src/_js/customizer/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","resolvedModule":"./src/_js/customizer/index.js","type":"harmony export imported specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./fonts/utils","loc":"33:0-91","moduleId":null,"resolvedModuleId":null}],"usedExports":["convertFontVariantToFVD"],"providedExports":["convertFontVariantToFVD"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":385,"sizes":{"javascript":385},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./src/_js/customizer-preview/style.scss","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","index":370,"preOrderIndex":370,"index2":370,"postOrderIndex":370,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":352,"resolving":326,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":326,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"./style.scss","loc":"11:0-22","moduleId":null,"resolvedModuleId":null}],"usedExports":[],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 4:0-17"],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":22445,"sizes":{"javascript":22445},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","index":372,"preOrderIndex":372,"index2":387,"postOrderIndex":387,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","issuerName":"./src/_js/customizer-preview/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"13:0-89","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"112:8-27","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"113:23-43","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","module":"./src/_js/customizer-preview/index.js","moduleName":"./src/_js/customizer-preview/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","resolvedModule":"./src/_js/customizer-preview/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"114:15-34","moduleId":null,"resolvedModuleId":null}],"usedExports":["getFontFieldCSSCode","getFontFieldCSSValue","maybeLoadFontFamily"],"providedExports":["getFieldUnit","getFontFieldCSSCode","getFontFieldCSSValue","maybeLoadFontFamily"],"optimizationBailout":[],"depth":1},{"type":"module","moduleType":"javascript/auto","layer":null,"size":39,"sizes":{"javascript":39},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","name":"./node_modules/lodash/each.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/each.js","index":3,"preOrderIndex":3,"index2":38,"postOrderIndex":38,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","issuerName":"./src/_js/customizer/global-service.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":309,"resolving":111,"restoring":0,"building":198,"integration":0,"storing":0,"additionalResolving":108,"additionalIntegration":0,"factory":111,"dependencies":108},"id":6073,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"4:0-32","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"154:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"162:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"170:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"193:2-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"209:4-9","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"310:2-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"451:2-7","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"4:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"154:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"162:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"170:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"193:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"209:4-9","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"310:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"451:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","module":"./src/_js/customizer/global-service.js","moduleName":"./src/_js/customizer/global-service.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"1:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","module":"./src/_js/customizer/global-service.js","moduleName":"./src/_js/customizer/global-service.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"59:2-7","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/each","loc":"1:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/each","loc":"59:2-7","moduleId":9495,"resolvedModuleId":null}],"usedExports":true,"providedExports":null,"optimizationBailout":["Statement (ExpressionStatement) with side effects in source code at 1:0-38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":733,"sizes":{"javascript":733},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","name":"./node_modules/lodash/isObject.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","index":37,"preOrderIndex":37,"index2":28,"postOrderIndex":28,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","issuerName":"./node_modules/lodash/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3218,"issuerId":3279,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","module":"./node_modules/lodash/_baseClone.js","moduleName":"./node_modules/lodash/_baseClone.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseClone.js","resolvedModule":"./node_modules/lodash/_baseClone.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"19:15-36","moduleId":5990,"resolvedModuleId":5990},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","module":"./node_modules/lodash/_baseCreate.js","moduleName":"./node_modules/lodash/_baseCreate.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseCreate.js","resolvedModule":"./node_modules/lodash/_baseCreate.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":3118,"resolvedModuleId":3118},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","module":"./node_modules/lodash/_baseIsNative.js","moduleName":"./node_modules/lodash/_baseIsNative.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseIsNative.js","resolvedModule":"./node_modules/lodash/_baseIsNative.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"3:15-36","moduleId":8458,"resolvedModuleId":8458},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","module":"./node_modules/lodash/_baseKeysIn.js","moduleName":"./node_modules/lodash/_baseKeysIn.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseKeysIn.js","resolvedModule":"./node_modules/lodash/_baseKeysIn.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":313,"resolvedModuleId":313},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","module":"./node_modules/lodash/_baseSet.js","moduleName":"./node_modules/lodash/_baseSet.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_baseSet.js","resolvedModule":"./node_modules/lodash/_baseSet.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"4:15-36","moduleId":611,"resolvedModuleId":611},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","module":"./node_modules/lodash/_isStrictComparable.js","moduleName":"./node_modules/lodash/_isStrictComparable.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/_isStrictComparable.js","resolvedModule":"./node_modules/lodash/_isStrictComparable.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":9162,"resolvedModuleId":9162},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"1:15-36","moduleId":3279,"resolvedModuleId":3279},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","module":"./node_modules/lodash/isFunction.js","moduleName":"./node_modules/lodash/isFunction.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isFunction.js","resolvedModule":"./node_modules/lodash/isFunction.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"2:15-36","moduleId":3560,"resolvedModuleId":3560},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","module":"./node_modules/lodash/isObject.js","moduleName":"./node_modules/lodash/isObject.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isObject.js","resolvedModule":"./node_modules/lodash/isObject.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"31:0-14","moduleId":3218,"resolvedModuleId":3218},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isObject","loc":"2:15-36","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 31:0-14","Statement (ExpressionStatement) with side effects in source code at 31:0-26","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":629,"sizes":{"javascript":629},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","name":"./node_modules/lodash/pick.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","index":41,"preOrderIndex":41,"index2":100,"postOrderIndex":100,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","issuerName":"./src/_js/customizer/global-service.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","name":"./src/_js/customizer/global-service.js","profile":{"total":251,"resolving":6,"restoring":0,"building":245,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":6,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8718,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","module":"./src/_js/customizer/global-service.js","moduleName":"./src/_js/customizer/global-service.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/pick","loc":"2:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","module":"./src/_js/customizer/global-service.js","moduleName":"./src/_js/customizer/global-service.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/pick","loc":"57:24-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/pick","loc":"2:0-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/global-service.js","resolvedModule":"./src/_js/customizer/global-service.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/pick","loc":"57:24-29","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","module":"./node_modules/lodash/pick.js","moduleName":"./node_modules/lodash/pick.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/pick.js","resolvedModule":"./node_modules/lodash/pick.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"25:0-14","moduleId":8718,"resolvedModuleId":8718}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 25:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:38","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1575,"sizes":{"javascript":1575},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/api-set-setting-value.js","name":"./src/_js/customizer/utils/api-set-setting-value.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/api-set-setting-value.js","index":104,"preOrderIndex":104,"index2":102,"postOrderIndex":102,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","issuerName":"./src/_js/customizer/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","name":"./src/_js/customizer/create-reset-buttons.js","profile":{"total":251,"resolving":8,"restoring":0,"building":243,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":8,"dependencies":0},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","name":"./src/_js/customizer/utils/index.js","profile":{"total":895,"resolving":639,"restoring":0,"building":256,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":639,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":328,"resolving":211,"restoring":0,"building":117,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":211,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"64:6-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"91:12-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","module":"./src/_js/customizer/create-reset-buttons.js","moduleName":"./src/_js/customizer/create-reset-buttons.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/create-reset-buttons.js","resolvedModule":"./src/_js/customizer/create-reset-buttons.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"116:8-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","module":"./src/_js/customizer/utils/index.js","moduleName":"./src/_js/customizer/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","resolvedModule":"./src/_js/customizer/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./api-set-setting-value","loc":"1:0-61","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","module":"./src/_js/customizer/utils/index.js","moduleName":"./src/_js/customizer/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/utils/index.js","resolvedModule":"./src/_js/customizer/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./api-set-setting-value","loc":"1:0-61","moduleId":null,"resolvedModuleId":null}],"usedExports":["apiSetSettingValue"],"providedExports":["apiSetSettingValue"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":520,"sizes":{"javascript":520},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","name":"./node_modules/lodash/now.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","index":111,"preOrderIndex":111,"index2":108,"postOrderIndex":108,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","issuerName":"./node_modules/lodash/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":7771,"issuerId":3279,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs require","active":true,"explanation":"","userRequest":"./now","loc":"2:10-26","moduleId":3279,"resolvedModuleId":3279},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","module":"./node_modules/lodash/now.js","moduleName":"./node_modules/lodash/now.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/now.js","resolvedModule":"./node_modules/lodash/now.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"23:0-14","moduleId":7771,"resolvedModuleId":7771}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 23:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-30","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1519,"sizes":{"javascript":1519},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","name":"./node_modules/lodash/toNumber.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","index":112,"preOrderIndex":112,"index2":111,"postOrderIndex":111,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","issuerName":"./node_modules/lodash/debounce.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","name":"./node_modules/lodash/debounce.js","profile":{"total":1,"resolving":1,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":1,"dependencies":0},"id":3279}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":9,"additionalIntegration":0,"factory":0,"dependencies":9},"id":4841,"issuerId":3279,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","module":"./node_modules/lodash/debounce.js","moduleName":"./node_modules/lodash/debounce.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/debounce.js","resolvedModule":"./node_modules/lodash/debounce.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toNumber","loc":"3:15-36","moduleId":3279,"resolvedModuleId":3279},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","module":"./node_modules/lodash/toFinite.js","moduleName":"./node_modules/lodash/toFinite.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toFinite.js","resolvedModule":"./node_modules/lodash/toFinite.js","type":"cjs require","active":true,"explanation":"","userRequest":"./toNumber","loc":"1:15-36","moduleId":8601,"resolvedModuleId":8601},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","module":"./node_modules/lodash/toNumber.js","moduleName":"./node_modules/lodash/toNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/toNumber.js","resolvedModule":"./node_modules/lodash/toNumber.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"64:0-14","moduleId":4841,"resolvedModuleId":4841}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 64:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:37","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":698,"sizes":{"javascript":698},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","name":"./src/_js/customizer/colors/color-palette-builder/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/color-palette-builder/index.js","index":115,"preOrderIndex":115,"index2":348,"postOrderIndex":348,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","issuerName":"./src/_js/customizer/colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","name":"./src/_js/customizer/colors/index.js","profile":{"total":351,"resolving":99,"restoring":0,"building":252,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":99,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":846,"resolving":577,"restoring":0,"building":269,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":577,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./color-palette-builder","loc":"2:0-67","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./color-palette-builder","loc":"9:2-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["initializePaletteBuilder"],"providedExports":["initializePaletteBuilder"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":9421,"sizes":{"javascript":9421},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/hsluv/hsluv.js","name":"./node_modules/hsluv/hsluv.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/hsluv/hsluv.js","index":118,"preOrderIndex":118,"index2":113,"postOrderIndex":113,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","issuerName":"./src/_js/customizer/colors/components/builder/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","name":"./src/_js/customizer/colors/components/builder/utils.js","profile":{"total":804,"resolving":364,"restoring":0,"building":440,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":364,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":119,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"hsluv","loc":"19:0-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"hsluv","loc":"278:14-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"hsluv","loc":"282:12-22","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"hsluv","loc":"19:0-47","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"hsluv","loc":"278:14-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"hsluv","loc":"282:12-22","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/hsluv/hsluv.js","module":"./node_modules/hsluv/hsluv.js","moduleName":"./node_modules/hsluv/hsluv.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/hsluv/hsluv.js","resolvedModule":"./node_modules/hsluv/hsluv.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"329:0-14","moduleId":119,"resolvedModuleId":119}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 329:0-14","Statement (VariableDeclaration) with side effects in source code at 2:0-24","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":100003,"sizes":{"javascript":100003},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","name":"./node_modules/chroma-js/chroma.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","index":119,"preOrderIndex":119,"index2":114,"postOrderIndex":114,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","issuerName":"./src/_js/customizer/colors/components/builder/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","name":"./src/_js/customizer/colors/components/builder/utils.js","profile":{"total":804,"resolving":364,"restoring":0,"building":440,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":364,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":5792,"issuerId":null,"chunks":[290,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"chroma-js","loc":"20:0-31","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"91:12-18","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"92:13-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"93:15-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"94:14-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"191:16-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"210:13-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"252:17-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"254:26-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"254:58-64","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"266:8-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"285:9-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"390:11-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"390:36-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"394:11-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"396:11-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"chroma-js","loc":"20:0-31","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"91:12-18","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"92:13-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"93:15-21","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"94:14-20","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":false,"explanation":"","userRequest":"chroma-js","loc":"191:16-28","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"210:13-19","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"252:17-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"254:26-32","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"254:58-64","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"266:8-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"285:9-15","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"390:11-17","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"390:36-42","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"394:11-24","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"chroma-js","loc":"396:11-23","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","module":"./node_modules/chroma-js/chroma.js","moduleName":"./node_modules/chroma-js/chroma.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","resolvedModule":"./node_modules/chroma-js/chroma.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"59:67-81","moduleId":5792,"resolvedModuleId":5792},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","module":"./node_modules/chroma-js/chroma.js","moduleName":"./node_modules/chroma-js/chroma.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/chroma-js/chroma.js","resolvedModule":"./node_modules/chroma-js/chroma.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"62:2-6","moduleId":5792,"resolvedModuleId":5792}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: this is used directly at 62:2-6","CommonJS bailout: module.exports is used directly at 59:67-81","Statement (ExpressionStatement) with side effects in source code at 58:0-3225:5","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1230,"sizes":{"javascript":1230},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/contrast-array.js","name":"./src/_js/customizer/colors/components/builder/contrast-array.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/contrast-array.js","index":120,"preOrderIndex":120,"index2":115,"postOrderIndex":115,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","issuerName":"./src/_js/customizer/colors/components/builder/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","name":"./src/_js/customizer/colors/components/builder/utils.js","profile":{"total":804,"resolving":364,"restoring":0,"building":440,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":364,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":141,"resolving":69,"restoring":0,"building":72,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":69,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./contrast-array","loc":"21:0-45","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./contrast-array","loc":"209:42-55","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","module":"./src/_js/customizer/colors/components/builder/utils.js","moduleName":"./src/_js/customizer/colors/components/builder/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/utils.js","resolvedModule":"./src/_js/customizer/colors/components/builder/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./contrast-array","loc":"277:38-51","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-3:3"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":112,"sizes":{"javascript":112},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/context.js","name":"./src/_js/customizer/colors/context.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/context.js","index":121,"preOrderIndex":121,"index2":117,"postOrderIndex":117,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","issuerName":"./src/_js/customizer/colors/components/builder/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":617,"resolving":362,"restoring":0,"building":255,"integration":0,"storing":0,"additionalResolving":12,"additionalIntegration":0,"factory":362,"dependencies":12},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../context","loc":"14:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../context","loc":"85:42-64","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../../context","loc":"16:0-42","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../context","loc":"26:31-44","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","module":"./src/_js/customizer/colors/components/source-colors/index.js","moduleName":"./src/_js/customizer/colors/components/source-colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","resolvedModule":"./src/_js/customizer/colors/components/source-colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../../context","loc":"101:32-45","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-45"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6954,"sizes":{"javascript":6954},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","name":"./src/_js/customizer/colors/components/source-colors/index.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/index.js","index":122,"preOrderIndex":122,"index2":346,"postOrderIndex":346,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","issuerName":"./src/_js/customizer/colors/components/builder/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","name":"./src/_js/customizer/colors/components/builder/index.js","profile":{"total":555,"resolving":306,"restoring":0,"building":249,"integration":0,"storing":0,"additionalResolving":3,"additionalIntegration":0,"factory":306,"dependencies":3},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":844,"resolving":762,"restoring":0,"building":82,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":762,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"../source-colors","loc":"13:0-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","module":"./src/_js/customizer/colors/components/builder/index.js","moduleName":"./src/_js/customizer/colors/components/builder/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/builder/index.js","resolvedModule":"./src/_js/customizer/colors/components/builder/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"../source-colors","loc":"92:38-50","moduleId":null,"resolvedModuleId":null}],"usedExports":["SourceColors"],"providedExports":["SourceColors"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 18:0-22:32"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":6827,"sizes":{"javascript":6827},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","name":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","index":124,"preOrderIndex":124,"index2":118,"postOrderIndex":118,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","issuerName":"./src/_js/customizer-preview/style.scss","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./src/_js/customizer-preview/style.scss","profile":{"total":352,"resolving":326,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":326,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":1,"additionalIntegration":0,"factory":0,"dependencies":1},"id":3379,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-95","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js|ae1a601a3c93450dfd1933a3f99f5003","module":"./src/_js/customizer/index.js + 169 modules","moduleName":"./src/_js/customizer/index.js + 169 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":9495,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-95","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","module":"./src/_js/customizer/colors/components/contextual-menu/style.scss","moduleName":"./src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/contextual-menu/style.scss","resolvedModule":"./src/_js/customizer/colors/components/contextual-menu/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"1:0-104","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","module":"./src/_js/customizer/colors/components/source-colors/style.scss","moduleName":"./src/_js/customizer/colors/components/source-colors/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/components/source-colors/style.scss","resolvedModule":"./src/_js/customizer/colors/components/source-colors/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!../../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","loc":"9:13-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","module":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","moduleName":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","resolvedModule":"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"230:0-14","moduleId":3379,"resolvedModuleId":3379}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 230:0-14","Statement (VariableDeclaration) with side effects in source code at 3:0-17:4","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":723,"sizes":{"javascript":723},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","name":"./node_modules/lodash/isString.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","index":140,"preOrderIndex":140,"index2":130,"postOrderIndex":130,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":11,"additionalIntegration":0,"factory":0,"dependencies":11},"id":7037,"issuerId":null,"chunks":[104,290,527,861],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isString","loc":"6:0-40","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isString","loc":"34:8-17","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isString","loc":"6:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isString","loc":"34:8-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","module":"./node_modules/lodash/includes.js","moduleName":"./node_modules/lodash/includes.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","resolvedModule":"./node_modules/lodash/includes.js","type":"cjs require","active":true,"explanation":"","userRequest":"./isString","loc":"3:15-36","moduleId":4721,"resolvedModuleId":4721},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","module":"./node_modules/lodash/isString.js","moduleName":"./node_modules/lodash/isString.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isString.js","resolvedModule":"./node_modules/lodash/isString.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"30:0-14","moduleId":7037,"resolvedModuleId":7037},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","module":"./node_modules/reactcss/lib/flattenNames.js","moduleName":"./node_modules/reactcss/lib/flattenNames.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/reactcss/lib/flattenNames.js","resolvedModule":"./node_modules/reactcss/lib/flattenNames.js","type":"cjs require","active":true,"explanation":"","userRequest":"lodash/isString","loc":"8:17-43","moduleId":4147,"resolvedModuleId":4147}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 30:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-3:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1237,"sizes":{"javascript":1237},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/utils.js","name":"./src/_js/customizer/colors/utils.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/utils.js","index":351,"preOrderIndex":351,"index2":349,"postOrderIndex":349,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","issuerName":"./src/_js/customizer/colors/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","name":"./src/_js/customizer/colors/index.js","profile":{"total":351,"resolving":99,"restoring":0,"building":252,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":99,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":574,"resolving":189,"restoring":0,"building":385,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":189,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./utils","loc":"3:0-46","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"61:19-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","module":"./src/_js/customizer/colors/index.js","moduleName":"./src/_js/customizer/colors/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/colors/index.js","resolvedModule":"./src/_js/customizer/colors/index.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./utils","loc":"65:19-38","moduleId":null,"resolvedModuleId":null}],"usedExports":["moveConnectedFields"],"providedExports":["moveConnectedFields"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":740,"sizes":{"javascript":740},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","name":"./src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/handle-font-popup-toggle.js","index":353,"preOrderIndex":353,"index2":351,"postOrderIndex":351,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":582,"resolving":235,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":235,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"15:2-23","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./handle-font-popup-toggle","loc":"5:0-67","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./handle-font-popup-toggle","loc":"5:0-67","moduleId":null,"resolvedModuleId":null}],"usedExports":["handleFontPopupToggle"],"providedExports":["handleFontPopupToggle"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1014,"sizes":{"javascript":1014},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","name":"./src/_js/customizer/fonts/utils/init-subfield.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","index":354,"preOrderIndex":354,"index2":358,"postOrderIndex":358,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":582,"resolving":236,"restoring":0,"building":346,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":236,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"37:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"39:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"41:2-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./init-subfield","loc":"6:0-47","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./init-subfield","loc":"6:0-47","moduleId":null,"resolvedModuleId":null}],"usedExports":["initSubfield"],"providedExports":["initSubfield"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3464,"sizes":{"javascript":3464},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","name":"./src/_js/customizer/fonts/utils/self-update-value.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","index":356,"preOrderIndex":356,"index2":357,"postOrderIndex":357,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":583,"resolving":237,"restoring":0,"building":346,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":237,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"77:4-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./self-update-value","loc":"8:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./self-update-value","loc":"8:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","module":"./src/_js/customizer/fonts/utils/init-subfield.js","moduleName":"./src/_js/customizer/fonts/utils/init-subfield.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/init-subfield.js","resolvedModule":"./src/_js/customizer/fonts/utils/init-subfield.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"27:2-17","moduleId":null,"resolvedModuleId":null}],"usedExports":["selfUpdateValue"],"providedExports":["selfUpdateValue"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":414,"sizes":{"javascript":414},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/fonts-service.js","name":"./src/_js/customizer/fonts/utils/fonts-service.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/fonts-service.js","index":357,"preOrderIndex":357,"index2":353,"postOrderIndex":353,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":596,"resolving":340,"restoring":0,"building":256,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":340,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"87:11-34","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./fonts-service","loc":"12:0-49","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"(skipped side-effect-free modules)","userRequest":"./fonts-service","loc":"13:0-41","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"12:6-28","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"17:2-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"76:2-25","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"12:6-29","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"12:44-66","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"17:2-26","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"79:2-26","moduleId":null,"resolvedModuleId":null}],"usedExports":["isLoading","isUpdating","setLoading","setUpdating"],"providedExports":["isLoading","isUpdating","setLoading","setUpdating"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 1:0-18"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2712,"sizes":{"javascript":2712},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","name":"./src/_js/customizer/fonts/utils/standardize-numerical-value.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/standardize-numerical-value.js","index":358,"preOrderIndex":358,"index2":354,"postOrderIndex":354,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":593,"resolving":237,"restoring":0,"building":356,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":237,"dependencies":4},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./standardize-numerical-value","loc":"1:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./standardize-numerical-value","loc":"42:33-58","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./standardize-numerical-value","loc":"76:42-67","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","module":"./src/_js/customizer/fonts/utils/callback-filter.js","moduleName":"./src/_js/customizer/fonts/utils/callback-filter.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","resolvedModule":"./src/_js/customizer/fonts/utils/callback-filter.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./standardize-numerical-value","loc":"107:37-62","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./standardize-numerical-value","loc":"9:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./standardize-numerical-value","loc":"9:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./standardize-numerical-value","loc":"4:0-74","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","module":"./src/_js/customizer/fonts/utils/load-font-value.js","moduleName":"./src/_js/customizer/fonts/utils/load-font-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/load-font-value.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"./standardize-numerical-value","loc":"30:26-51","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","module":"./src/_js/customizer/fonts/utils/self-update-value.js","moduleName":"./src/_js/customizer/fonts/utils/self-update-value.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/self-update-value.js","resolvedModule":"./src/_js/customizer/fonts/utils/self-update-value.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./index","loc":"46:18-43","moduleId":null,"resolvedModuleId":null}],"usedExports":["standardizeNumericalValue"],"providedExports":["standardizeNumericalValue"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":600,"sizes":{"javascript":600},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","name":"./src/_js/customizer/fonts/utils/update-font-head-title.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-font-head-title.js","index":361,"preOrderIndex":361,"index2":359,"postOrderIndex":359,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":594,"resolving":238,"restoring":0,"building":356,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":238,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"67:2-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./update-font-head-title","loc":"10:0-63","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./update-font-head-title","loc":"10:0-63","moduleId":null,"resolvedModuleId":null}],"usedExports":["updateFontHeadTitle"],"providedExports":["updateFontHeadTitle"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2211,"sizes":{"javascript":2211},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","name":"./src/_js/customizer/fonts/utils/update-variant-field.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/update-variant-field.js","index":362,"preOrderIndex":362,"index2":360,"postOrderIndex":360,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":596,"resolving":340,"restoring":0,"building":256,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":340,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"69:2-20","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./update-variant-field","loc":"11:0-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./update-variant-field","loc":"11:0-60","moduleId":null,"resolvedModuleId":null}],"usedExports":["updateVariantField"],"providedExports":["updateVariantField"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":3381,"sizes":{"javascript":3381},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","name":"./src/_js/customizer/fonts/utils/load-font-value.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/load-font-value.js","index":363,"preOrderIndex":363,"index2":362,"postOrderIndex":362,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":582,"resolving":236,"restoring":0,"building":346,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":236,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"88:8-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./load-font-value","loc":"7:0-50","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./load-font-value","loc":"7:0-50","moduleId":null,"resolvedModuleId":null}],"usedExports":["loadFontValue"],"providedExports":["loadFontValue"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":5326,"sizes":{"javascript":5326},"built":true,"codeGenerated":false,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","name":"./src/_js/customizer/fonts/utils/callback-filter.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/callback-filter.js","index":365,"preOrderIndex":365,"index2":363,"postOrderIndex":363,"cacheable":true,"optional":false,"orphan":true,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","issuerName":"./src/_js/customizer/fonts/utils/index.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/index.js","name":"./src/_js/customizer/index.js","profile":{"total":947,"resolving":45,"restoring":1,"building":901,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":45,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","name":"./src/_js/customizer/fonts/utils/index.js","profile":{"total":486,"resolving":253,"restoring":0,"building":233,"integration":0,"storing":0,"additionalResolving":4,"additionalIntegration":0,"factory":253,"dependencies":4},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":580,"resolving":233,"restoring":0,"building":347,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":233,"dependencies":0},"id":null,"issuerId":null,"chunks":[],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","module":"./src/_js/customizer/fonts/index.js","moduleName":"./src/_js/customizer/fonts/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/index.js","resolvedModule":"./src/_js/customizer/fonts/index.js","type":"harmony import specifier","active":true,"explanation":"(skipped side-effect-free modules)","userRequest":"./utils","loc":"105:31-48","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony side effect evaluation","active":false,"explanation":"","userRequest":"./callback-filter","loc":"1:0-54","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","module":"./src/_js/customizer/fonts/utils/index.js","moduleName":"./src/_js/customizer/fonts/utils/index.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer/fonts/utils/index.js","resolvedModule":"./src/_js/customizer/fonts/utils/index.js","type":"harmony export imported specifier","active":false,"explanation":"","userRequest":"./callback-filter","loc":"1:0-54","moduleId":null,"resolvedModuleId":null}],"usedExports":["getCallbackFilter"],"providedExports":["getCallbackFilter"],"optimizationBailout":[],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2223,"sizes":{"javascript":2223},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/_js/customizer-preview/style.scss","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","index":371,"preOrderIndex":371,"index2":369,"postOrderIndex":369,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","issuerName":"./src/_js/customizer-preview/style.scss","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","name":"./src/_js/customizer-preview/style.scss","profile":{"total":352,"resolving":326,"restoring":0,"building":26,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":326,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":728,"resolving":3,"restoring":0,"building":725,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":3,"dependencies":0},"id":946,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"2:12-140","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"9:17-24","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"13:15-29","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"2:12-140","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"9:17-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","module":"./src/_js/customizer-preview/style.scss","moduleName":"./src/_js/customizer-preview/style.scss","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/style-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/css-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/sass-loader/dist/cjs.js!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/style.scss","resolvedModule":"./src/_js/customizer-preview/style.scss","type":"harmony import specifier","active":true,"explanation":"","userRequest":"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/sass-loader/dist/cjs.js!./style.scss","loc":"13:15-29","moduleId":null,"resolvedModuleId":null}],"usedExports":["default"],"providedExports":["default"],"optimizationBailout":["Statement (VariableDeclaration) with side effects in source code at 3:0-84","ModuleConcatenation bailout: Module uses module.id"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1304,"sizes":{"javascript":1304},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","name":"./node_modules/lodash/find.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","index":373,"preOrderIndex":373,"index2":376,"postOrderIndex":376,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":3311,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/find","loc":"1:0-32","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/find","loc":"423:6-11","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/find","loc":"1:0-32","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/find","loc":"423:6-11","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","module":"./node_modules/lodash/find.js","moduleName":"./node_modules/lodash/find.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/find.js","resolvedModule":"./node_modules/lodash/find.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"42:0-14","moduleId":3311,"resolvedModuleId":3311}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 42:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:39","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":757,"sizes":{"javascript":757},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","name":"./node_modules/lodash/has.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","index":379,"preOrderIndex":379,"index2":378,"postOrderIndex":378,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":8721,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/has","loc":"2:0-30","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/has","loc":"283:6-10","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/has","loc":"2:0-30","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/has","loc":"283:6-10","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","module":"./node_modules/lodash/has.js","moduleName":"./node_modules/lodash/has.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/has.js","resolvedModule":"./node_modules/lodash/has.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"35:0-14","moduleId":8721,"resolvedModuleId":8721}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 35:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:36","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":2000,"sizes":{"javascript":2000},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","name":"./node_modules/lodash/isEmpty.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","index":381,"preOrderIndex":381,"index2":379,"postOrderIndex":379,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1609,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"3:0-38","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"178:52-60","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"178:85-93","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"194:8-16","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"202:7-15","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"208:7-15","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"268:6-14","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"273:6-14","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"304:6-14","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"355:9-17","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"358:11-19","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"386:11-19","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"389:13-21","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"413:60-68","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"415:61-69","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"3:0-38","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"178:52-60","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"178:85-93","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"194:8-16","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"202:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"208:7-15","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"268:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"273:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"304:6-14","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"355:9-17","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"358:11-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"386:11-19","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"389:13-21","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"413:60-68","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isEmpty","loc":"415:61-69","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","module":"./node_modules/lodash/isEmpty.js","moduleName":"./node_modules/lodash/isEmpty.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isEmpty.js","resolvedModule":"./node_modules/lodash/isEmpty.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"77:0-14","moduleId":1609,"resolvedModuleId":1609}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 77:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-8:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":886,"sizes":{"javascript":886},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","name":"./node_modules/lodash/isNumber.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","index":382,"preOrderIndex":382,"index2":380,"postOrderIndex":380,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":1763,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isNumber","loc":"5:0-40","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isNumber","loc":"52:15-24","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/isNumber","loc":"5:0-40","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/isNumber","loc":"52:15-24","moduleId":null,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","module":"./node_modules/lodash/isNumber.js","moduleName":"./node_modules/lodash/isNumber.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/isNumber.js","resolvedModule":"./node_modules/lodash/isNumber.js","type":"cjs self exports reference","active":true,"explanation":"","userRequest":null,"loc":"38:0-14","moduleId":1763,"resolvedModuleId":1763}],"usedExports":null,"providedExports":null,"optimizationBailout":["CommonJS bailout: module.exports is used directly at 38:0-14","Statement (VariableDeclaration) with side effects in source code at 1:0-2:45","ModuleConcatenation bailout: Module is not an ECMAScript module"],"depth":2},{"type":"module","moduleType":"javascript/auto","layer":null,"size":1772,"sizes":{"javascript":1772},"built":true,"codeGenerated":true,"cached":false,"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","name":"./node_modules/lodash/includes.js","nameForCondition":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/lodash/includes.js","index":383,"preOrderIndex":383,"index2":386,"postOrderIndex":386,"cacheable":true,"optional":false,"orphan":false,"issuer":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","issuerName":"./src/_js/customizer-preview/utils.js","issuerPath":[{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js","name":"./src/_js/customizer-preview/index.js","profile":{"total":867,"resolving":36,"restoring":0,"building":831,"integration":0,"storing":0,"additionalResolving":36,"additionalIntegration":0,"factory":36,"dependencies":36},"id":null},{"identifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","name":"./src/_js/customizer-preview/utils.js","profile":{"total":251,"resolving":5,"restoring":0,"building":246,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":5,"dependencies":0},"id":null}],"failed":false,"errors":0,"warnings":0,"profile":{"total":0,"resolving":0,"restoring":0,"building":0,"integration":0,"storing":0,"additionalResolving":0,"additionalIntegration":0,"factory":0,"dependencies":0},"id":4721,"issuerId":null,"chunks":[104,527],"assets":[],"reasons":[{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/includes","loc":"7:0-40","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"16:51-60","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"31:52-61","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"57:49-58","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"81:54-63","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"105:51-60","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"129:50-59","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"133:54-63","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"137:55-64","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"222:8-17","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"232:11-20","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"237:11-20","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"278:6-15","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"352:7-16","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/index.js|4537c83335f579488ae8b47223beda54","module":"./src/_js/customizer-preview/index.js + 2 modules","moduleName":"./src/_js/customizer-preview/index.js + 2 modules","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony import specifier","active":true,"explanation":"","userRequest":"lodash/includes","loc":"383:9-18","moduleId":2961,"resolvedModuleId":null},{"moduleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","module":"./src/_js/customizer-preview/utils.js","moduleName":"./src/_js/customizer-preview/utils.js","resolvedModuleIdentifier":"/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/Users/razvan/Local/rosa2/app/public/wp-content/plugins/customify/src/_js/customizer-preview/utils.js","resolvedModule":"./src/_js/customizer-preview/utils.js","type":"harmony side effect evaluation","active":true,"explanation":"","userRequest":"lodash/includes"